PDA

View Full Version : Category appearance


Addman8
Aug-16-2007, 06:16 AM
Can anyone tell me why this category page:

http://www.mattaddington.smugmug.com/clients


doesn't hold the gallery style all the way to the bottom? It cuts off halfway down the page?
thanks,matt

Allen
Aug-16-2007, 06:45 AM
Can anyone tell me why this category page:

http://www.mattaddington.smugmug.com/clients


doesn't hold the gallery style all the way to the bottom? It cuts off halfway down the page?
thanks,matt
The background in this is causing it.

#bodyWrapper {width:800px; margin:0 auto; background:#333333;}

Addman8
Aug-16-2007, 09:07 AM
I see that, but it doesn't do it on any other pages that I think have that same category style.

For example:
http://mattaddington.smugmug.com/Cameron

oxy8384
Aug-16-2007, 10:03 AM
Can anyone tell me why this category page:
http://www.mattaddington.smugmug.com/clients
doesn't hold the gallery style all the way to the bottom? It cuts off halfway down the page?
thanks,matt

Fortunately, the background ends in black. So you can make it look like it continues to the bottom just by setting the background color to black in your CSS...

#subcategoriesBox .boxBottom { background-color: #000; }

Bill

Addman8
Aug-16-2007, 10:14 AM
Fortunately, the background ends in black. So you can make it look like it continues to the bottom just by setting the background color to black in your CSS...

#subcategoriesBox .boxBottom { background-color: #000; }

Bill

Got it. Thanks much, Bill.

oxy8384
Aug-16-2007, 10:35 AM
...that the .boxBottom element has a background color of 'transparent'. So you could get the same effect by setting
#subcategoriesBox {background-color: #000; }

Looking in your CSS, you set the #galleriesBox (Cameron) background color to black, but not the #subcategoriesBox (clients). Add this in and you're golden!:thumb

Bill

oxy8384
Aug-16-2007, 10:38 AM
...that should be
#subcategoriesBox .boxBottom {...}

Bill