Click to See Complete Forum and Search --> : site review
jmilin5931
11-14-2006, 08:17 AM
I'm having a few glitches showing up in Safari and IE. The top navigation gets thrown off in Safari and IE, the top gold bar is missing in IE, and the logo image gets thrown off in safari and IE. Any help would be appreciated. All CSS is in the HTML document itself. Thanks.
http://www.cemprospects.com/test/index.htm
TheBearMay
11-14-2006, 09:25 AM
Not real fond of tables used for presentation, but if you add
style=" background-image: url(images/top_gold.gif)"
to the TD containing your header the gold bar should display the same in IE and FF.
jmilin5931
11-14-2006, 09:58 AM
thanks. How would you lay it out differently without using so many tables? Does using tables usually create problems between different browsers?
TheBearMay
11-14-2006, 12:17 PM
Current thinking says that tables should only be used to present tabular data (think spreadsheet), and that web page presentation should be done using CSS. You've started a wee bit down that road already, but you could go a lot further.
jmilin5931
11-14-2006, 03:30 PM
Any good resources for laying out a website using all css instead of tables? I'd like to attempt this for my next project.