• Resolved levin.ben

    (@levinben)


    I recently created a gallery using the Photonic plugin. For some reason I’m getting these >> characters next to each thumbnail and top row of thumbnails is not aligned with the rest.

    https://www.benlevin.net/art/

    I can’t figure out where this issue is stemming from.

Viewing 3 replies - 1 through 3 (of 3 total)
  • It is coming from your theme. It has a style.css rule defined:

    .entry ul li:before, #sidebar ul ul li:before {
        content: "? ";
    }

    The plugin respects your theme’s stylesheet settings, hence you are seeing this. If you want to get rid of it you have to add a rule to your stylesheet to say:

    .photonic-flickr-stream li.photonic-flickr-image:before {
        content: "";
    }
    Thread Starter levin.ben

    (@levinben)

    Thanks again. That fixed it. I still have a slight alignment issue. I’m sure that is some other issue with my stylesheet.

    Your plugin is fantastic.

    Thread Starter levin.ben

    (@levinben)

    The alignment issue was in my stylesheet in this:

    html>body .entry ul {

    The text-indent was set to -10px and was messing with the first line of the Photonic gallery. I set it to:

    text-indent: 0px;

    And the issue was resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Extra space and characters in Photonic gallery’ is closed to new replies.