HighDots Forums  

Is this table CSS okay?!

alt.html alt.html


Discuss Is this table CSS okay?! in the alt.html forum.



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

Default Is this table CSS okay?! - 04-16-2006 , 10:04 AM






Is this table CSS okay?!

www.softgroups.com/register.php


or I better remove those yellow dots?! by the way , how I can change
that yellow color into a blakc one?!


Reply With Quote
  #2  
Old   
frederick@southernskies.co.uk
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 10:19 AM






PHP SoftGroups wrote:
Quote:
Is this table CSS okay?!

www.softgroups.com/register.php
Please validate your HTML before requesting advice:
<http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fsoftgroups.com%2F register.php>

Please validate your CSS before requesting advice:
<http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A%2F%2F softgroups.com%2Fregister.php>

And for the trifecta, I'd strongly urge you to check your spelling!

Quote:
or I better remove those yellow dots?!
What yellow dots? [Firefox 1.5.0.1]

Quote:
by the way , how I can change
that yellow color into a blakc one?!
The only yellow that I can see is the background colour of "Register",
which you've explicitly defined in your class "fbuton".

Why are you using table layout instead of divs?


Oh, and the words "soft" and "groups" aren't sitting on the same
baseline in your logo.

--
AGw.



Reply With Quote
  #3  
Old   
Beauregard T. Shagnasty
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 11:07 AM



PHP SoftGroups wrote:

Quote:
Is this table CSS okay?!

www.softgroups.com/register.php

or I better remove those yellow dots?! by the way , how I can change
that yellow color into a blakc one?!
No yellow dots here either. Firefox, Opera, or IE.

Please! Remove the border-style: dotted from your CSS.
.ftd {
border-style: dotted;
(Fortunately, that doesn't work in Opera)

Plus all the usual comments about fixed font sizing, use of Verdana,
etc. Don't do it.

Spelling. "Unfornetly" ... "hundrets" ...

" ** If you check this box, your website will be made public, ... "
Two asterisks? That refers to nothing on the page.

You might as well not bother to have "terms&conditions". <lol>
http://softgroups.com/terms.php

--
-bts
-Warning: I brake for lawn deer


Reply With Quote
  #4  
Old   
Nije Nego
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 11:20 AM



On 16 Apr 2006 07:04:35 -0700, PHP SoftGroups wrote:

Quote:
Is this table CSS okay?!

www.softgroups.com/register.php


or I better remove those yellow dots?! by the way , how I can change
that yellow color into a blakc one?!
It is not OK.
Check validator, you have 30 errors.

What yellow dots?

You need a doctype.

This code
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">
should be managed by css.

This code
<br><Br>
<br><br><Br><p><br><p><br>
should be managed by css.

This code
<font class=stiri>...some text here ...<br><br>
needs a closing tag, but would been apropriate with <h2> and <p>

--
o'tom po'tom


Reply With Quote
  #5  
Old   
frederick@southernskies.co.uk
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 11:25 AM



Beauregard T. Shagnasty wrote:

Quote:
You might as well not bother to have "terms&conditions". <lol
http://softgroups.com/terms.php
Brilliant!! I'd like to see someone try to rely on that in a European
court...


--
AGw.



Reply With Quote
  #6  
Old   
Jonathan N. Little
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 11:46 AM



PHP SoftGroups wrote:
Quote:
Is this table CSS okay?!

www.softgroups.com/register.php


or I better remove those yellow dots?! by the way , how I can change
that yellow color into a blakc one?!

To answer what I think your are asking, the table for your input form is
okay. Everything else is incorrect, that's an example of 'table layout'
and should be avoided. BTW your markup is a mish-mash of presentational
and deprecated markup, time to review what is current, expecial when one
is in the business, right?

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com


Reply With Quote
  #7  
Old   
Martin Jay
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 12:54 PM



In message <4442665e$0$3701$cb0e7fc6 (AT) news (DOT) centralva.net>, Jonathan N.
Little <lws4art (AT) centralva (DOT) net> writes
Quote:
PHP SoftGroups wrote:
Is this table CSS okay?!
www.softgroups.com/register.php
or I better remove those yellow dots?! by the way , how I can
change
that yellow color into a blakc one?!

To answer what I think your are asking, the table for your input form
is okay.
What are peoples' thoughts about using tables for this sort of form
input? It looks good, degrades nicely, and I've never seen a better
alternative.
--
Martin Jay


Reply With Quote
  #8  
Old   
Jonathan N. Little
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-16-2006 , 08:25 PM



Martin Jay wrote:
Quote:
In message <4442665e$0$3701$cb0e7fc6 (AT) news (DOT) centralva.net>, Jonathan N.
Little <lws4art (AT) centralva (DOT) net> writes
To answer what I think your are asking, the table for your input form
is okay.

What are peoples' thoughts about using tables for this sort of form
input? It looks good, degrades nicely, and I've never seen a better
alternative.
Well depending on that you are trying to accomplish I have styled LABEL
and INPUT as block with a slight left margin on INPUT creates a rather
attractive:

label for a:
[input a]

label for b:
[input b]

Alternatively, grouping related controls with labels in DIVs which I
float left so if the viewport is wide enough the grouping stack
horizontally, but flexible so when viewport is narrowed the groups
stack vertically. This can be a very efficient approach.


--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com


Reply With Quote
  #9  
Old   
PHP SoftGroups
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-17-2006 , 12:24 AM



I would really like to known !
Neredbojias wrote:
Quote:
To further the education of mankind, "PHP SoftGroups" <dualphp (AT) gmail (DOT) com
vouchsafed:

Is this table CSS okay?!

www.softgroups.com/register.php


or I better remove those yellow dots?! by the way , how I can change
that yellow color into a blakc one?!

Very interesting! They're (kinda) yellow in IE but blue in Firefox. How
did you do that?

--
Neredbojias
Infinity can have limits.


Reply With Quote
  #10  
Old   
Jim Moe
 
Posts: n/a

Default Re: Is this table CSS okay?! - 04-17-2006 , 12:25 AM



Neredbojias wrote:
Quote:
Is this table CSS okay?!

or I better remove those yellow dots?! by the way , how I can change
that yellow color into a blakc one?!

Very interesting! They're (kinda) yellow in IE but blue in Firefox. How
did you do that?

There is no border color specified. So it is left to the browser's
imagination about what to apply. IE is very creative.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)


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.