HighDots Forums  

table dont show up

alt.html.tags alt.html.tags


Discuss table dont show up in the alt.html.tags forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Moluske
 
Posts: n/a

Default table dont show up - 04-26-2005 , 01:57 PM






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



Reply With Quote
  #2  
Old   
David Dorward
 
Posts: n/a

Default Re: table dont show up - 04-26-2005 , 03:06 PM






Moluske wrote:

Quote:
http://www.jfl-host.com/hosting.htm

at the bottom ther is Whats include
It shows up here, probably whatever browser you are using is unable to
compensate for your 66 syntax errors.

http://validator.w3.org/check?verbos...om/hosting.htm

See also: http://www.allmyfaqs.com/faq.pl?Tableless_layouts

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is


Reply With Quote
  #3  
Old   
Jim Michaels
 
Posts: n/a

Default Re: table dont show up - 02-03-2006 , 02:02 AM



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




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.