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.
I can't figure out where this issue is stemming from.
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.
I can't figure out where this issue is stemming from.
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: "";
}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.
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.
You must log in to post.