Viewing 1 replies (of 1 total)
  • Hi – Thanks for using the RPS Image Gallery plugin.

    Line 578 of style.css in the active theme is reformatting the list item to block and that is causing the issue.

    .post-entry ul li {
    display: block;
    margin: 5px 0;
    padding: 0 0 0 17px;
    background: url(images/bullet.png) no-repeat 0 5px;
    }

    Try adding the following to style.css just below the above definition:

    .rps-image-gallery ul li {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    vertical-align: top;
    }

    That should take care of it. Please let us know if you have any other questions and thanks again for using the plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘RPS Image Gallery Not Displaying Columns’ is closed to new replies.