Navbar/Background image/CSS need help -
06-25-2004
, 01:24 PM
I have a site and have a CSS navbar made up from code from project 7
http://www.projectseven.com/tutorials/css/uberlinks/
It works awsome but the problem is it doesn't fill up the whole row. Is there
a way I can make the tables that look like buttons adjust so it stretches the
entire width of the row ?
I also tried putting the same background image as the buttons in the row with
CSS so it will just look like a useless button but I can't get it to repeat
throughout the entire row. Maybe I am doing something wrong or can't fine the
right handle.
I attached the code for the CSS file.
Thanks
Nick
.main a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
text-decoration: underline;
font-weight: bold;
}
.main a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
text-decoration: underline;
font-weight: bold;
}
.main a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #0066CC;
text-decoration: none;
font-weight: bold;
}
.main a:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #0066CC;
text-decoration: underline;
font-weight: bold;
}
.nav a:link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #000000;
text-decoration: none;
font-weight: bold;
}
.nav a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #000000;
text-decoration: none;
font-weight: bold;
}
.nav a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #0066CC;
text-decoration: underline;
font-weight: bold;
}
.nav a:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #0066CC;
text-decoration: underline;
font-weight: bold;
}
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
} |