PDA

View Full Version : How do I get the Galleries to all look the same?


BillyAckers
Dec-09-2008, 08:16 AM
Hi there

I have made some great modifications thanks to this site and I am very grateful for all the help, even for the feedback about not mithering people directly :rolleyes!!!

Anyway, I now want to make http://billyackers.smugmug.com/Walkabouts this gallery (and my other such sub galleries?) look like this layout... http://billyackers.smugmug.com/galleries

I assume it has something to do with categories in the CSS coding? but I just dont appear to have stumbled across the right answer yet!

Do I have to make reference in the CSS code to each gallery / category / subcategory that I make? :dunno

Finally, does anyone know how to change the font style on the wording of Walkabouts, Panoramic Images etc here http://billyackers.smugmug.com/galleries to be normal NOT bold and smaller font?

Thanks again.

Billy

jfriend
Dec-09-2008, 08:37 AM
Hi there

I have made some great modifications thanks to this site and I am very grateful for all the help, even for the feedback about not mithering people directly :rolleyes!!!

Anyway, I now want to make http://billyackers.smugmug.com/Walkabouts this gallery (and my other such sub galleries?) look like this layout... http://billyackers.smugmug.com/galleries

I assume it has something to do with categories in the CSS coding? but I just dont appear to have stumbled across the right answer yet!

Do I have to make reference in the CSS code to each gallery / category / subcategory that I make? :dunno

Finally, does anyone know how to change the font style on the wording of Walkabouts, Panoramic Images etc here http://billyackers.smugmug.com/galleries to be normal NOT bold and smaller font?

Thanks again.

Billy

Try changing this CSS of yours:

.galleries .boxBottom,
.galleries .boxTop {background: #000;}

to this:

#categoriesBox .boxBottom,
#categoriesBox .boxTop,
#galleriesBox .boxBottom,
#galleriesBox .boxTop,
.galleries .boxBottom,
.galleries .boxTop {background: #000;}

And, you can change the look of the gallery titles with this CSS:

.miniBox .albumTitle a.nav {
font-weight:normal;
font-size: 12px;
}

BillyAckers
Dec-09-2008, 09:27 AM
Try changing this CSS of yours:

.galleries .boxBottom,
.galleries .boxTop {background: #000;}

to this:

#categoriesBox .boxBottom,
#categoriesBox .boxTop,
#galleriesBox .boxBottom,
#galleriesBox .boxTop,
.galleries .boxBottom,
.galleries .boxTop {background: #000;}

And, you can change the look of the gallery titles with this CSS:

.miniBox .albumTitle a.nav {
font-weight:normal;
font-size: 12px;
}

Cheers and Thank you for that. I had a quick play with it and need to spend a little more time tidying it up.

Have the subcategories that are still not playing ball but should be easy to move them from sub categories

Thanks again :barb

jfriend
Dec-09-2008, 09:31 AM
Cheers and Thank you for that. I had a quick play with it and need to spend a little more time tidying it up.

Have the subcategories that are still not playing ball but should be easy to move them from sub categories

Thanks again :barb

Just add "subcategoriesBox" to the same CSS just like galleriesBox and categoriesBox.

denisegoldberg
Dec-09-2008, 09:32 AM
Have the subcategories that are still not playing ball but should be easy to move them from sub categories
One reason they look different is that the size of the thumbs is dictated by the number of galleries in the category or subcategory. If there are 5 or fewer galleries, the thumbs are 150x150, and if there are more than 5 the thumbs are 100x100. Unfortunately that isn't under our control.

--- Denise

BillyAckers
Dec-12-2008, 09:46 AM
One reason they look different is that the size of the thumbs is dictated by the number of galleries in the category or subcategory. If there are 5 or fewer galleries, the thumbs are 150x150, and if there are more than 5 the thumbs are 100x100. Unfortunately that isn't under our control.

--- Denise

Thansk Denise. Thank you all again.

Billy