Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Errors on Validation

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #27374
    TheN00b
    Participant

    Hi Guys

    I am trying to validate the CSS on my website but I can not.

    it gives me 5 errors … I check my CSS and it looks fine ! I do not know where I’m getting them errors from.

    I’d greatly appreciate any help in fixing them errors.

    Thank You. :(

    #68777
    darren
    Member

    Hey again, im not a 100% sure but I think if you put background: transparent on the divs that are wrong

    #68794
    TheDoc
    Member

    Very easy fix!

    You’ve got the order of declarations of the background a little mixed up. For example:

    Current:
    #header { background : url(‘_images/header_bg.jpg’) no-repeat top; }

    Should be:
    #header { background : url(‘_images/header_bg.jpg’) top no-repeat; }

    #68795
    TheN00b
    Participant

    Thanks Guys

    You were right TheDoc :)

    Thank You So Much.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.