Forum Moderators: mack
Can someone help me out with this please?
Regarding the tables...the only option that I see it's working would be to create the website using layers and then converting to tables.Looks ok this way in both browsers.
Thanks!
what did you use to set the colors for the borders and links - css or html tags?
if you could show us the code you used - it would be helpful - if your table has many rows, you could reduce it to two or three and use this code instead.
Hope this helps
This is the general form of the code used for a table in my website.I hope this helps.
The tables are having the same background & border colour.Inside the tables I have just text.My goal is to hide the fact that I used tables for the end user...this is the reason why I have the same colour for the background and the borders.
Thank you!
[web standard cap on]
I will first tell you that you should - if you can - try and design websites using html and css and only use tables for data and not layout.
[web standard cap off]
here is what you can do to solve your prolem:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>x</title>
</head>
<body>
<table width="200" border="0" bgcolor="#0000FF">
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
you can also use the attributes cellpadding="value" and cellspacing="value" where value are numbers if you wish