Looing at the main page,
<font color="#ffffff" size="1" style="font-size:11px "
face="tahoma"><strong>OUR NEWS</strong></font>
should become
<div
style="color:#ffffff;font-size:11px;font-family:tahoma,sans-serif;font-weight:bold;">OUR
NEWS</div>
for one thing, it may work, but it's bad form. and <font> is deprecated. if
you get an old browser
if tahoma is not available on a box, sans-serif or serif should be made
available as a default font to fall back on.
or even better, in the <head></head> area, put in a
<style>
..heading1{
color:#ffffff;
font-size:11px;
font-family:tahoma,sans-serif;
font-weight:bold;
}
</style>
And you can re-use the class "heading1" in multiple places, like this:
<div class="heading1">OUR NEWS</div>
<div class="heading1">SUPPORT center</div>
it can also apply to td, span, and whatever other tag needs the formatting.
if you want to do all the td tags,
td{
background-color: teal;
}
if you want do td and th
td,th{
}
this is some of what CSS can bring to the table. not to mention partially
transparent tags.
http://developer.mozilla.org/en/docs...and_Background
(only 2 of these examples work correctly on IE6 - #2 and #4: you can have
opaque text and partially transparent background, etc)
"Moluske" <moluske (AT) hotmail (DOT) com> wrote
Quote:
see this page http://www.jfl-host.com/hosting.htm
at the bottom ther is Whats include
make a search in the Source for ( MySQL ) you see ther is a Table that
dont show up on the page i dont know why. its supose to look like this one
on the first page www.jfl-host.com
thanks for your help im desperate
J-F |