|
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.
|