Question about how to fit gallery into my theme...

doc_holiday

Joined: 2005-12-28
Posts: 11
Posted: Thu, 2005-12-29 17:05

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!

 
lvthunder

Joined: 2003-09-12
Posts: 804
Posted: Thu, 2005-12-29 18:10

A link would be helpful. See this link. It might have the answer you need.

 
doc_holiday

Joined: 2005-12-28
Posts: 11
Posted: Thu, 2005-12-29 19:04

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%;
}

 
dj-3plet

Joined: 2005-03-12
Posts: 70
Posted: Tue, 2006-01-03 00:47

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%;
}