
RE: Help-Product pages are centered in IE & Opera no mat
hell-o
looking at your source it appears you aren't nesting your tables enough. if using one or two tables then everything is based on the global parameters. when nesting the parameters change (in relation to height and width) to the outer table. so the more you nest tables within tables the more control you have and can realize expected placement of contents. xbrowser complance with nestscape is tough. generally if you code to netscape then most other browsers will fall in line. but you wont get exact desired results from all browsers. also, netscape defines colors differently than ie or even opera i think. another things is netscape will collapse tables and cells. best thing there is to tile a bg image in a color. for example if you have some txt in a cell and you want the cell to also act as a fixed height and width to maintain the layout then do a bg image like so...
1px width x 150px height in the color of your design.
<td valign=top align=center height="150" width="150"> this is the cell you want 150 high
<table valign=top align=center height="150" width="150" background=my_spacer.pic" cellpadding="0" cellspacing="0"> this is the nested table for content control
<tr>
<td valign=top align=center height="150" width="150"> all the text here</td>
</tr>
</table>
</td>
the text will expand the width to 150 then wrap. the bg image will maintain the 150 height as required. the bg image color will render much better xbrowser then any color code and is small enough to not add much pageload. the real trick is to force the dang thing to tile in opera. take a look at this site:
http://www.theamdals.com/
examine the code. this was a simple free template off the net. but of course unusable unless you had only two words per page. i had to join/flatten then reslice the design. then force the left menu and the right border to tile. you can see the left and the right are different means for calling the bg image. one is straight html and the other is css. they both work just fine. but the key is nesting and control.
here is a less busy one. same situation. free template but unuseable. notice onloading the left menu bg image. this tiles just fine and layers great in opera:
http://www.visionarybeading.com/
i don't have netscape. i wont have anything aol on my pc. so i just code to ie, opera and firefox.
hope that all makes sense. if i have time tonight i'll look over your layout for you.
regards,
dan