Posts: 679
Location: Kokkola, Finland
|
not being facetious (hence the smiley) but you could have been more explicit in your urls (like, er it's the ones in my sig...)
you need to specify the borders in pixels so for example in http://www.letsgetracing.co.uk/ you have the table border around the section that has
Home Betting Contact ...
you have
<td width="75%" style="background-color: #7C84B1; border-bottom: 2 solid #F1AC7A">
so use
<td width="75%" style="background-color: #7C84B1; border-bottom: 2px solid #F1AC7A";>
missing out one value or not specifying units (for anything other than 0 renders the style invalid)
p.s. lucky i didn't mention anything about frontpage
edit: forgot my semicolon at the end of the style which although not strictly necessary can avoid problems and is good practice
|