Hi there! Simple question - I need to amend the CSS slightly on the home page of www.onemillhitwonder.com, so that the text "Shackn.com" is red in colour, and slightly larger. How do I do this? (Also, is anyone else seeing the error when you hover over the title at the top left? I can't work out what is going on there....)
hi add this to your css file a.redlink{ font-size:22px; text-decoration:none; color:#FF0000; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; } a.redlink:hover{ font-size:22px; text-decoration:none; color:#FF0000; font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif; } and amend this in your html code <a href="http://www.shackn.com" class="redlink">shackn.com</a> vineet
Perfect, worked like a dream. Thanks very much for that. I couldn't opt for a generic h2 style, because it would have also affected the other headings on the site. Did you get a chance to look at the concept of the site? If so, what do you think?
But you could have easily given that h2 some special id or class, like vinpkl's "redlink" class. h2.redlink a { color: #f00; } etc Not that it matters, since right after that there's this evil-lookin' <font color=red> in there. Lawlz : )
Hi again.... I went to implement this CSS code into my new template...I assumed that I could just copy and paste the code mentioned above into my CSS file and that all would be fine. But apparently not. Does anyone have any suggestions can I can update my NEW template for One Million Hit Wonder, so that the 'amirite.com' link (beside the Current Advertiser heading) is set to 22 pixels and in red?