This may be too broad of a question, but after sitting here for a number of hours and going cross eyed, I thought I might see if there is a simple answer for this newbee at gallery.
I have been able to incorporate gallery into my WP theme, using the WP Gallery Theme. The trouble is, Gallery fits perfectly into my site. Too perfectly. On the edges of my theme is a small decorative border. Is there a way to "pad" the sides of Gallery or set a fixed width of gallery so that it is just slighly smaller than my theme width?
Thanks in advance!
Posts: 804
A link would be helpful. See this link. It might have the answer you need.
Posts: 11
Ah, that was it... cheers!
#gallery {
font-family: Verdana, Arial, Helvetica, sans-serif;
padding: 0;
margin-left: 5px;
margin-bottom: 0px;
width: 821px;
font-size: 65.5%;
}
Posts: 70
better yet, make it 100% width and add a margin, like this:
#gallery {
font-family: Verdana, Arial, Helvetica, sans-serif;
padding: 0;
margin: 0 10px;
font-size: 65.5%;
}