Barnum, this would be a good time to use some basic CSS to save yourself some work. Firstly, change this:
Code:
<table border="0" cellpadding="40" cellspacing="20" width="80%" span style="font-family: Comic Sans MS;">
to this
Code:
<table class="box">
Then add something like this to your style sheet, which you can use over and over just by adding that class to the table:
Code:
.box {border:none;
width: 80%;
border-collapse:collapse;
font: "comic Sans MS";
}
.box td {
padding: 40px;
}
In your original code, you have the word "span" (in red) which doesn't belong there, and may be causing a problem in some browsers.
Bookmarks