choyt
05-13-2003, 02:34 AM
First let me say, great little boards here, gang.
I'd like to ask a quick question as I'm working with my first site that will strictly use CSS for it's layout.
You can find my dev work here: http://www2.silentlightning.net
If you'll notice in the news windows of the postings that the bottom blue bar has links too dark to view them. I'd like to make those links a diff color than the links on the rest of the site.
Here is a snippet of the css:
a {
color: #000066;
text-decoration: none;
}
a:hover {
color: #000066;
text-decoration: underline overline;
}
.infobar{
padding-bottom: 4px;
padding-left: 4px;
padding-right: 4px;
padding-top: 2px;
border-bottom: #ccc 1px solid;
border-left: #fff 1px solid;
border-right: #ccc 1px solid;
border-top: #fff 1px solid;
background-color: #e2e2e2;
color: white;
font: 10px tahoma, arial, verdana, helvetica, sans-serif;
background-image : url(images/cap1.gif);
}
As you can see the .infobar is the section with the links that are too dark. My question is basically how do I add link and hover info in the .infobar portion so that it only affects the infobar links and not the rest of the site. This IS possible, eh?
I'd like to ask a quick question as I'm working with my first site that will strictly use CSS for it's layout.
You can find my dev work here: http://www2.silentlightning.net
If you'll notice in the news windows of the postings that the bottom blue bar has links too dark to view them. I'd like to make those links a diff color than the links on the rest of the site.
Here is a snippet of the css:
a {
color: #000066;
text-decoration: none;
}
a:hover {
color: #000066;
text-decoration: underline overline;
}
.infobar{
padding-bottom: 4px;
padding-left: 4px;
padding-right: 4px;
padding-top: 2px;
border-bottom: #ccc 1px solid;
border-left: #fff 1px solid;
border-right: #ccc 1px solid;
border-top: #fff 1px solid;
background-color: #e2e2e2;
color: white;
font: 10px tahoma, arial, verdana, helvetica, sans-serif;
background-image : url(images/cap1.gif);
}
As you can see the .infobar is the section with the links that are too dark. My question is basically how do I add link and hover info in the .infobar portion so that it only affects the infobar links and not the rest of the site. This IS possible, eh?