Hey All,
Back again. 2 quick questions.
1. I applied css to footer links on a site, and while link and hover are working fine, avtive and visited aren't. Any idea why? Here's the CSS:
div.bottomCopyright div.bottomLinks a.bottom_links_block:link {
color: #fff;
}
div.bottomCopyright div.bottomlinks a.bottom_links_block:visited {
color: #fff;
}
div.bottomCopyright div.bottomLinks a.bottom_links_block:hover {
color: #b11d33;
}
div.bottomCopyright div.bottomlinks a.bottom_links_block:active {
color: #b11d33;
}
I kept on adding more specificity, but that doesn't seem to be working.
2. Is there a way to get a container div that is 20px wider than .main? I ask as a margin would be nice, a lot of times I set mains bg to white, and there is a nice 10px margin between blocks, but they are flush on the outside edges. It would just keep that 10px white space consistent on all content edges. And if possible, could it go right up to the nav bar?
Pls let me know!
Aaron