PDA

View Full Version : Problem/Question with my Site


Tizzy
Aug-27-2009, 09:36 AM
Hello!
I just recently added a photobiz template to my website.
But I am still linking my client ordering to smugmug.
I have customized my smugmug client galleries to match my flash website.
However, at the top of the page there is a box that says: Client Galleries Galleries - and it is pink (the color of my old website) and I can't get it to change. I don't mind the box - I just want to have it match the rest of the page.
To see what I am talking about: http://tiffanisiebert.smugmug.com/Client-Galleries
Thanks for any help you can offer!
PS - I am not great a CSS, but can do it if walked through it.

J Allen
Aug-27-2009, 10:52 AM
To remove just the box:





/*====No More Background====*/
.boxBottom,
.boxTop,
.box
{background:none !important;
border:none !important;}




To remove the text:





/*=====No Titles!!=====*/
#galleryTitle,
#categoryTitle,
#subcategoryTitle,
#subCatGalleryTitle
{display:none;}

jwashburn
Aug-27-2009, 10:58 AM
Hello!
I just recently added a photobiz template to my website.
But I am still linking my client ordering to smugmug.
I have customized my smugmug client galleries to match my flash website.
However, at the top of the page there is a box that says: Client Galleries Galleries - and it is pink (the color of my old website) and I can't get it to change. I don't mind the box - I just want to have it match the rest of the page.
To see what I am talking about: http://tiffanisiebert.smugmug.com/Client-Galleries
Thanks for any help you can offer!
PS - I am not great a CSS, but can do it if walked through it.

Change this
.box {
background-color: #fac6dd;
}

to

.box {
background-color: #6FC8D0;
}


Assuming you want it the same color

Tizzy
Aug-27-2009, 02:52 PM
Thank you both!:clap