When I insert galleries, the thumbnails end up being vertical rather than side by side. Is there a way to fix this?
When I insert galleries, the thumbnails end up being vertical rather than side by side. Is there a way to fix this?
Hey, it looks like all img elements have display:block set and it produces the vertical effect.
Add this to your style.css at the bottom
#wpsimplegallery img {
display: inline;
}You must log in to post.