PDA

View Full Version : I like the standard nav bar But....


asamuel
Oct-28-2006, 02:48 AM
I have a standard nav bar but I want to make, it bigger with a bigger fatter font. I also want to put it at the bottom of the screen. Any links to threads and the appropriate css for that. Bit overwhelmed with Nav info.

Promise to stop hogging the Custom help:bow

Andy
Oct-28-2006, 04:45 AM
I have a standard nav bar but I want to make, it bigger with a bigger fatter font. I also want to put it at the bottom of the screen. Any links to threads and the appropriate css for that. Bit overwhelmed with Nav info.

Promise to stop hogging the Custom help:bow



#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
font-size: 20px;
}

#navcontainer ul li {
display: inline;
}

#navcontainer ul li a {
text-decoration: none;
padding: .5em 2em;
color: #404040;
background-color: #ffffff;
}


Change the numbers in your padding statement, and in the font-size statement, in your navbar CSS.

Then, to have it in your footer, move the navbar html from your header html box to your footer box :D

asamuel
Oct-28-2006, 05:09 AM
Lovely Jubblely. I'll get the hang of this soon I hope:thumb