you can ‘move’ the gallery shortcode to functions.php of your theme and add your inline styles there;
see: http://wordpress.org/support/topic/edit-gallery-shortcode?replies=9
if you think your problem is theme related, please contact the sellers of your theme for support.
Thread Starter
dmaqg
(@dmaqg)
Thanks for your reply. I don’t really understand that, so I will probably leave it. Isn’t there a way to style it in the page editing screen?
I’m not sure how it could be theme related because I am running the same theme on both sites…
Add to your css:
.post-inner-single, .post-inner {
float: left;
margin-bottom: 20px;
width: 940px; /* change is here, was 100% */
}
Suggest, for my personal taste, you add to your css:
.gallery .gallery-row {
clear: both;
display: block;
margin: 0;
overflow: hidden;
padding-bottom: 30px; /* added padding */
}
this embedded style in the ‘ranch’ site is making the difference:
<style type="text/css">
.ultimatepost{
float:left;
}
.ultimatepost .aligner{
}
</style>
try to find out where it is coming from, why it is there, and remove it.
Thread Starter
dmaqg
(@dmaqg)
Ok, thanks I can work with those two comments.
Thread Starter
dmaqg
(@dmaqg)
Yeah! I have it fixed. I added your css, Flashbuddy, thank you! It actually looks even better than before with the padding between rows. 🙂