Frustrated, Frontpage compatibility with 3rd party browsers...

S

Sixbells

Website: http://www.mwncov.com/
On the three Lawyers pages I get white space at the bottom of the pages with
Netscape, Opera, Foxfire and Safari browsers. I have tried to eliminating
height in tables, moving all of the tables above the max height of the Banner
Image of 706 px, eliminating as many empty tables as possible, and have had
no luck eliminating the white space. I am at a loss, should I set up
multiple CSS for each browser??? Furthermore, I have nailed it with the Home
and Contact pages as they display no white space. Frustrating my friends...
 
R

Ronx

Add IE8 to list of browsers showing white space under the left column
image.
I suggest that you redo the pages using nested tables, rather than
colspans and rowspans which make debugging difficult. Also try removing
the height attributes from the table cells, and allow the tables and
cells to adopt their "natural" sizes.

The footer copyright message is almost unreadable - the font size is
too small.
 
T

tankman

Sixbells;9207716 said:
Website: http://www.mwncov.com/
On the three Lawyers pages I get white space at the bottom of the page
with
Netscape, Opera, Foxfire and Safari browsers. I have tried t
eliminating
height in tables, moving all of the tables above the max height of th
Banner
Image of 706 px, eliminating as many empty tables as possible, and hav
had
no luck eliminating the white space. I am at a loss, should I set up
multiple CSS for each browser??? Furthermore, I have nailed it wit
the Home
and Contact pages as they display no white space. Frustrating m
friends...

I would use a decent package such as Dreamweaver or if you cant affor
it go for Coffee Cup
 
R

Rob Giordano [MS MVP]

and that would fix it, eh?




--
~~~~~~~~~~~~~~~~~~
Rob Giordano
Microsoft MVP Expression
 
S

Sixbells

I will re-write it with nested tables, a good do over usually results in
better code anyway. But one question, when designing the main table just
basically use the Draw Layout Table tool first, the insert tables using the
Draw Table tool? I am a FrontPage guy, have always used it and don't really
want to go through the learning curve of Dreamweaver right now. But thanks
for the reply and input tankman!
--
Many Regards and Thank You,
Sixbells


Rob Giordano said:
and that would fix it, eh?




--
~~~~~~~~~~~~~~~~~~
Rob Giordano
Microsoft MVP Expression
 
R

Ronx

Don't use the draw table tool. That will add height attributes to
everything (tables and table cells) which you will then have to remove.

Use the Table menu: Table->Insert Table
Set the widths of cells using cell properties (right click in a cell,
choose cell properties and set the width), but do not set the height.

Don't add empty table cells (your existing layout has a whole column of
empty cells) - these are ignored by some browsers and only add to code
bloat.
--
Ron Symonds - Microsoft MVP (Expression)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




I will re-write it with nested tables, a good do over usually results in
better code anyway. But one question, when designing the main table just
basically use the Draw Layout Table tool first, the insert tables using the
Draw Table tool? I am a FrontPage guy, have always used it and don't really
want to go through the learning curve of Dreamweaver right now. But thanks
for the reply and input tankman!
 
M

Murray

Actually, empty table cells are not really 'ignored', but some browsers will
not show borders or background colors in them. I'm not sure, but I think
that was primarily a problem with older versions of IE (pre 7) or Safari
(pre 3). The thing to REALLY avoid is merging/splitting of cells.

1. When I need to merge cells...
a. If they are horizontally adjacent, instead of merging them, I end
the current table, and 'stack' a new one underneath it with the desired cell
configuration.
b. If they are vertically adjacent, then I end the current table at the
row ABOVE the row where the need for merging begins. I then start a new
table with two cells in one row, and place a properly structured inner table
in each of those two cells.
2. When I need to split cells, I just insert a nested table with the proper
cell configuration into the cell I would otherwise split.

The goal here is to completely avoid merging or splitting cells (i.e., using
col- or rowspan attributes in your table markup), since that's what makes
Draw table's tables so fragile.
 
R

Rob Giordano [MS MVP]

In addition to what Ron says...I'd maybe start with a *copy* of the index
page since that is not having a problem, then empty the contents of the
cells one at a time and replace with the contents you need...might be easier
than starting from scratch for you.



--
~~~~~~~~~~~~~~~~~~
Rob Giordano
Microsoft MVP Expression
 
M

Murray

Don't even think of making this change unless you are willing to devote the
time and effort to learning HTML and CSS, though. Using DW without that
knowledge will be as frustrating, if not moreso than using EW.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top