Reputation: 894
Ok so there's a site i've been asked to look at and I can't seem to figure out why it only looks bad in safari. It looks fine in every other browser so far and I can't figure it out. The problem takes place in the footer of the document. Here's the link... www.palettekids.com (I SWEAR IT'S NOT MY DESIGN :-))!!! Thanks!
Upvotes: 0
Views: 188
Reputation: 17561
Fix your code errors, like the missing ending tags, like </div>, </body> and </html>
among other errors; probably all missing from footer.php. See [Invalid] Markup Validation of palettekids.com - W3C Markup Validator. Scroll down in the validation report to see line numbers and source code.
Upvotes: 1
Reputation: 16297
It looks like you have an extra </div>
somewhere if you look at the source in safari it is outside of the #container
. But in Chrome it is inside. The container is what is holding everything else in. Double check all your closing div's and remove the extra one.
Upvotes: 1
Reputation: 912
I don't think coords are supported in Safari:
http://www.w3schools.com/tags/att_a_coords.asp
try using another method (margin perhaps)?
Upvotes: 0