PDA

View Full Version : tab spacing


stephenbruno
Aug-20-2008, 12:15 AM
What and where do I put the code to have the second row of tabs be a bit lower than the first? Thanks!

Allen
Aug-20-2008, 11:13 AM
What and where do I put the code to have the second row of tabs be a bit lower than the first? Thanks!
Add in some line height to space out vertically.

#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
line-height: 25px;
}

stephenbruno
Aug-20-2008, 11:56 AM
Thank you, Allen! It works perfectly...:clap


Add in some line height to space out vertically.

#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
line-height: 25px;
}