A bit more trouble with CSS
I have having trouble with this styesheet:
http://www.plansmotorsport.com/seo-style.css
Specifically with the 'p.red' which doesn't work. The CSS validator spots a problem, but i don't actually get what it is?
Can you help please!
demonhale posted this at 11:54 — 12th May 2006.
He has: 3,278 posts
Joined: May 2005
the warning...
you lack the semi-colon.... (the one in bold)
p.red {font-family: arial; font-size: 11px; color: #FF1100; text-decoration: none; text-align: justify;}
Check it out
demonhale posted this at 11:55 — 12th May 2006.
He has: 3,278 posts
Joined: May 2005
and this line lacks a curly bracket... (the one above the p.red)
p.menu a:active {color: #000000 ;text-decoration: none;}
demonhale posted this at 11:57 — 12th May 2006.
He has: 3,278 posts
Joined: May 2005
no simicolons on the following....
p.sub {font-family: arial; font-size: 12px; color: #FF1100; text-decoration: none; text-align: justify}
and the group...
td {font-family: arial; font-size: 8pt; color: #646464 ; text-align: justify}
input {font-family: arial; font-size: 8pt; color: #646464; text-align: justify}
select {font-family: arial; font-size: 8pt; color: #646464; text-align: justify}
textarea {font-family: arial; font-size: 8pt; color: #646464; text-align: justify}
robfenn posted this at 11:58 — 12th May 2006.
He has: 471 posts
Joined: Jun 2005
Thanks Demon, you have a good eye!
demonhale posted this at 12:01 — 12th May 2006.
He has: 3,278 posts
Joined: May 2005
your welcome, check the minor errors out and feel free to post any problems with your css afterwards...
oh and the last one, the background tag has no simicolon too...
body {
margin: 0px;
padding: 0px;
background-color: #FFFFFF (semicolon here)
}
robfenn posted this at 12:11 — 12th May 2006.
He has: 471 posts
Joined: Jun 2005
All working nice now
demonhale posted this at 12:34 — 12th May 2006.
He has: 3,278 posts
Joined: May 2005
thats good to know...
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.