PDA

View Full Version : "Galleries" Text Removal, Pic


KurtAz
Sep-30-2008, 02:38 PM
First off, thanks for all the fantastic customization resources here. I'm off to a great start already. :thumb

I'm trying to figure out how to manipulate the text shown in the picture below. My question is.. can I remove it completely? Or - can I center it and change the font / color / size? I'd like to try both.

http://kurtbudde.smugmug.com/photos/383986403_Kyx33-L.jp

Thanks for any help!

Cotec
Sep-30-2008, 04:02 PM
Add this to your CSS to remove it


#galleriesBox .boxTop,
#categoriesBox .boxTop{
Display: none;
}


#galleriesBox is when you have it sorted by gallery name
#categoriesBox is when you have it sorted by gallery categories

Either way it will hide the top bar.

Cotec
Sep-30-2008, 04:24 PM
If you prefer to edit it instead of remove it:

You can edit the text through this code:

Add this to your CSS


#categoriesBox .boxTop #categoryTitle,
#galleriesBox .boxTop #galleryTitle{
color: black;
font: 18px;
position: relative;
left: 250px;
}


You can use a HTML color code in place of "black"
You can change font size by adjusting the number before PX
If its hasn't moved left enough increase the number after left

Again I added the #categoriesBox in case change to a categories layout

KurtAz
Sep-30-2008, 05:10 PM
Thanks! Works great.

jimwallingford
Sep-30-2008, 05:27 PM
Can you show me the code to remove the Sub-Categories from those galleries?:dunno

Cotec
Sep-30-2008, 06:08 PM
Can you show me the code to remove the Sub-Categories from those galleries?:dunno

Add this to your CSS to hide subcategories top box


#subcategoriesBox .boxTop{
display: none;
}