multiple browser support

E

experimenta

i recently published a trial site and it looks ok in explorer but a couple of
tables are out of whack in netscape and mozilla...is this an easy fix?

www.kelleygreens.com

thanks

sph
 
C

Corey Bryant

Are you sure you are using tables? The URL you provided is using divides
actually. The page looked OK in Firefox 2.0

But you are redefing the styles via a font tag. For example you have
<h1>
<font face="Eurostile" size="5">The Course</font></h1>

in your HTML page which overwrites the style you laid out in your style sheet:

h1 {

color: #bd4d29;

font: bold 22px Georgia, Georgia, serif;

text-align: left;

padding: 10px 0;

margin: 10px 0;}

And you have
<div id="content" style="width: 495px; height: 674px">
in your HTML page, but in your CSS, you have
#content {

width: 560px;

float: right;

line-height: 1.6em;

padding: 20px 20px 0 20px;}

it seems like you might have gotten ahold of a template and tried to change
a few things in Frontpage FP and the divides (FP calls them layers) sometimes
will cause a little havoc. You might try to edit your style sheet and delete
the extra code that was added
 
D

David Berry

I don't see any tables. You're using CSS and DIVs to position your content.
You'll have to play around with the positioning in your CSS to get it to
look the same in all browsers.
 
Top