Forum Moderators: not2easy
Thanks in advance,
Don
PS--oh, and if anyone could tell me how to get the gray background for the sidebar to extend all the way to the bottom of the screen, I'd be eternally grateful.
[edited by: Don_MacDonald at 6:26 pm (utc) on Mar. 18, 2004]
It might be a good idea to remove the links to your site (before the mods do) and include samples of the code that are not working. You can read over the sites Terms of Usage and Conditions of Service with the link above.
Anyway... to answer your question the affected part of your code is within an anchor tag which over-rides the .posted selector class. What you have to do is apply a simaler style to the anchor tag that caters for the Pseudo-classes hover active etc eg:
.postedAnchor{
simaler styles;
}
.postedAnchor:active{
simaler styles;
}
<a href="" class="postedAnchor">New link</a>
Hope this helps,
-George
In regards to my question above, the problem turns out to have been in the style sheet. I deleted the styling rules for a bunch of selectors without commenting out the selectors themselves, thus applying the styling from the next item down (which happened to be a .title tag) to those selectors.
Don't worry about it, we all make mistakes ;-)
I know it can be a pain pin-pointing the exact place of an error, but its just a hit and a miss if the person looking over it can see a call to a function (in javascript) that is not included they shall request it to be shown etc. All the harder in CSS i know...
Nice to see you found the problem.
-George