Hello, as you can see here [link removed] You see that the text "Weblup" is sort of ofset to the other <li> elements. Now I do know that it is a different text size but it's basically the same size as the others due to padding. So I want to know how to make it all line up. Also just to let you know Weblup will be more to the left too, so I'm just throwing that out there. I do know the reason it's out of line is because of text-size. So any advice? HTML AND CSS INCOMING!!!
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Weblup | Bringing Your Business To Life!</title> <link href='http://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" type="text/css" href="css/header-background.css" /> <link rel="stylesheet" type="text/css" href="css/header-menu.css" /> <link rel="styelsheet" type="text/css" href="css/css-reset.css" /> </head> <body> <div id="menus"> <ul class="menu"> <li id="logo">WEBLUP</li><li id="active">HOME</li><li>ABOUT</li><li>CONTACT ME</li><li>JOBS</li><li>NEED A WEBSITE?</li><li>GALLERY</li> </ul> </div> </body> </html>
CSS
@charset "utf-8";
/* CSS Document */
ul.menu li{
display: inline;
color: white;
padding: 5px 10px;
font-family: 'Dosis', sans-serif;
font-weight: 500;
letter-spacing: -1px;
font-size: 20px;
}
ul.menu li:hover{
display: inline;
background-color: white;
color: #669934;
padding: 5px 10px;
font-family: 'Dosis', sans-serif;
font-weight: 500;
letter-spacing: -1px;
font-size: 20px;
}
ul.menu li#active{
display: inline;
background-color: white;
color: #669934;
padding: 5px 10px;
font-family: 'Dosis', sans-serif;
font-weight: 500;
letter-spacing: -1px;
font-size: 20px;
}
li#logo{
color: white;
padding: 0px 10px;
font-family: 'Dosis', sans-serif;
letter-spacing: -1px;
font-size: 30px;
}
ul.menu{
float: right;
}
div#menus{
width: 958px;
margin: 0 0;
}