what happened to my homepage???

Discussion in 'CSS' started by tonyfloyd, Jan 4, 2008.

  1. #1
    please see GreekHomeRecipes (dot) com

    why are sidebars screwed up on homepage.....yet fine on all other pages???

    very weird......driving me nuts......any ideas??

    thanks
    tony
     
    tonyfloyd, Jan 4, 2008 IP
  2. webdesigner

    webdesigner Well-Known Member

    Messages:
    489
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    110
    #2
    First things would be to start working through your 154 validation errors.

    You can't expect it to work correctly if its not coded correctly.
     
    webdesigner, Jan 4, 2008 IP
  3. tonyfloyd

    tonyfloyd Well-Known Member

    Messages:
    1,230
    Likes Received:
    37
    Best Answers:
    0
    Trophy Points:
    140
    #3
    so...how do i clean up these validation errors?
     
    tonyfloyd, Jan 4, 2008 IP
  4. tonyfloyd

    tonyfloyd Well-Known Member

    Messages:
    1,230
    Likes Received:
    37
    Best Answers:
    0
    Trophy Points:
    140
    #4
    alos ...im looking at my php files vs the validation link above......i am not missing any <.....tags...etc...as it is implying.....???
     
    tonyfloyd, Jan 4, 2008 IP
  5. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Nah the validator doesn't see any php (or, shoudn't). The clue is to look at the source of a page after the php sends the info to the browser and the browser renders it. Then you'll only see the html. Harder to find stuff by line-number tho.
     
    Stomme poes, Jan 4, 2008 IP
  6. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Sometimes it's kinda hard to read the validator unless you know what you're doing.

    Line 4, your favicon link, wasn't closed like all your other links (with the /> ending).

    Center tags not allowed in XHTML.

    Line 254, <img src="whatever <a href="something..." You need alt attribute for the image, and a closing />

    Line 256 <li><h2 class="pages">Pages</h2> Can't start a li there. I think you're missing a <ul>

    Line 335, Column 74: cannot generate system identifier for general entity "offerid".

    …ergy.com/fs-bin/click?id=J81Jz6VpQSg&offerid=115418.10000397&type=4&subid=0">

    This one's caused by the &. Change it to &amp; instead.

    Etc... hope this gets you going. Nice site by the say. Looks pretty.
     
    Stomme poes, Jan 4, 2008 IP