PDA

View Full Version : How can I have bigger font in navbar.


rez
Apr-06-2008, 10:13 PM
Is it possible to have a bigger font in navbar?









http://richmartinez.smugmug.com/

denisegoldberg
Apr-07-2008, 02:41 AM
Is it possible to have a bigger font in navbar?http://richmartinez.smugmug.com/
You can change any font characteristics you'd like. Here's your navcontainer CSS with a couple of added font properties. The size can be specified in terms of a % or in terms of an actual size (pixels = px).

#navcontainer ul {
margin: 0;
font-family: verdana, comic sans ms;
font-size: 120%;
font-weight: bold;
padding: 0;
list-style-type: none;
text-align: center;
}
--- Denise

rez
Apr-07-2008, 06:36 PM
I would like to keep the same font, just increase it's size, but that code didnt work. I dont know what I did wrong?



http://richmartinez.smugmug.com/

denisegoldberg
Apr-07-2008, 06:40 PM
I would like to keep the same font, just increase it's size, but that code didnt work. I dont know what I did wrong?

http://richmartinez.smugmug.com/
It didn't work because you are missing the closing } for the code before it.

Here's what you have:

.gallery_4475477 .caption {
font-size: 120%;
color: #CDCDCD;
#navcontainer ul {
margin: 0;
font-family: verdana, comic sans ms;
font-size: 120%;
font-weight: bold;
padding: 0;
list-style-type: none;
text-align: center;
}

Change it to:

.gallery_4475477 .caption {
font-size: 120%;
color: #CDCDCD;
}
#navcontainer ul {
margin: 0;
font-size: 120%;
font-weight: bold;
padding: 0;
list-style-type: none;
text-align: center;
}
--- Denise

rez
Apr-07-2008, 07:00 PM
Thank you so much for all your help. I guess I should see little mistakes like that by now, but all this code still boggles my mind. You guy's are amazing!!


Rich:clap