View Single Post
Old 07-14-2007, 02:08 PM  
Doug E
Confirmed User
 
Join Date: Sep 2005
Posts: 511
img {
border: none;
}

img { border-width: 0px; }




Your Index page you should go pure css

eg.

<td valign="top" width='100%'>

=

<td style="vertical-align: top; width: 100%;">

<table width="850" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" bordercolor="#cccccc">

=

<table style="width: 850px; background-color: #FFFFFF; border-width: 0px; border-color: #CCCCCC; border-style: solid;">







Hints
-----

Don't use <font=> tags, use CSS and define the font size in px.

Get rid of cellpadding in all your code. It will fuck the most up.

In your head css table, td and img declarations I use these to make the playing field even between IE and FF...

table { margin: 0px; border-collapse: collapse; vertical-align: top; text-align: center; }

td { padding: 0px; vertical-align: top; text-align: center; }

img { border-width: 0px; vertical-align: bottom; padding: 0px; }

Then I build everything up from there.

Last edited by Doug E; 07-14-2007 at 02:11 PM..
Doug E is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote