PDA

View Full Version : a Little help please


HDPhoto
Feb-22-2008, 11:48 AM
on site

www.heartsdesire.smugmug.com (http://www.heartsdesire.smugmug.com)

1. Font on naa bar to white--looked everywhere for what code to change--missed it somehow

2. Font color change in Meet Kat & Info--where do I change the code?

3. In Portfolio, Portrait Sessions & Guestbook get rid of black box.

Thank you all in advance for the help.

denisegoldberg
Feb-22-2008, 11:56 AM
on site

www.heartsdesire.smugmug.com (http://www.heartsdesire.smugmug.com)

1. Font on naa bar to white--looked everywhere for what code to change--missed it somehow
To change the font in your navbar to white, change the color here:

#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: white;
background-color: #fce3ee;
}
But are you sure you want to use white? With the light background color you've chosen, white is extremely difficult to see.

--- Denise

HDPhoto
Feb-22-2008, 12:10 PM
font color fixed!!!! Went with a chocolate color--thank you for the advice. Any help on the other problems?

denisegoldberg
Feb-22-2008, 12:20 PM
font color fixed!!!! Went with a chocolate color--thank you for the advice. Any help on the other problems?
To change the background on all of your comments plus to change the text color to match that in your navbar, try this CSS:

#comments .box {background: none;}
#comments .boxTop,
#comments span,
#comments p.foreground {
color: #5E2612;
}

If you only want to change the background color you just need the top line.

You still have some white text around that you might want to change - like the breadcrumb, your copyright line, the smugmug footer, and the captions in your galleries.

If you want to change all captions, you can use this:

.caption {
color: #5e2612;
}

A gallery identifier can be tacked on the front if you only want to change it for some cases.

It might be a good idea to change your dgrin signature to include a link to your galleries. The one that's there now doesn't go to your smugmug galleries.

--- Denise

denisegoldberg
Feb-22-2008, 12:28 PM
And to get rid of the black background, try this:

.box,
.boxTop,
.boxBottom {
background-color: #fce3ee;
}

--- Denise

HDPhoto
Feb-22-2008, 04:24 PM
Ok last thing--for today:rofl

How do I change the font color of Galleries & in Galleries. I know you said something about breadcrumbs, but I really do not know what that means. I saw them in the CSS, but nowhere did I see a font number to change them or the smugmug stuff at the bottom. Basically I want all fonts colored on my pages the 5E6212.
Thank you for your help!:curtsey

HDPhoto
Feb-24-2008, 07:38 AM
Ok last thing--for today:rofl

How do I change the font color of Galleries & in Galleries. I know you said something about breadcrumbs, but I really do not know what that means. I saw them in the CSS, but nowhere did I see a font number to change them or the smugmug stuff at the bottom. Basically I want all fonts colored on my pages the 5E6212.
Thank you for your help!:curtsey

Can anyone help with this?

Allen
Feb-24-2008, 08:11 AM
Can anyone help with this?
Add this and see if it gets them all.

.pageNav, a.pageOn,
.nav, a.nav, p.updated, p.description,
a.title, .title, .imgBorderOn {
color: #5E6212 !important;
}