June 6, 200818 yr Link1 If you look at link1 above you will see that i have validated my CSS, right? I don't get it :S How does that help me correct errors.. For example: 140 .post .title Parse Error align: center What the hell, so i can't align my text in the center? :S THis is really confusing lol, can someone teach me to validate it please or tell me what is going on lol..
June 6, 200818 yr You just need to check your CSS keywords - try W3Schools. "align" is not a valid CSS element. If you want to align text in the centre, use "text-align:center;" If you want to put a limited-width element in the middle of another one, use "margin:0 auto;" alongside your width declaration.
June 6, 200818 yr Hi Seth Most of these are simple errors: 8 Parse error - Unrecognized , sans-serif; use sans instead of sans-serif 9 Parse error - Unrecognized } body { margin: 0; background: #43464D; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 13px; color: #58AFFF; } , sans-serif; [b]- this looks like it should be somewhere else. Not a properly defined CSS statement. There is no opening { etc.[/b] } 73 #logo a Value Error : background Unknown dimension 48577D you meant to type #48577D 140 .post .title Parse Error align: center change to text-align:center; 145 .post .title a Parse Error align: center change to text-align:center; 197 #footer Value Error : color 0 is not a color value : 0 you put color: 000000; and for got the # again. color: #000000; 206 #footer p Value Error : color 0 is not a color value : 0 as above Hope that helps
June 6, 200818 yr 8 Parse error - Unrecognized , sans-serif;9 Parse error - Unrecognized } remove this : , sans-serif; } from just after your body ends. 73 #logo a Value Error : background Unknown dimension 48577D change this in #logo a: background: 48577D; to this: background-color: #48577D; for these two: 140 .post .title Parse Error align: center145 .post .title a Parse Error align: center in .post .title and .post .title a change text align: center; to text-align: center; Finally: 197 #footer Value Error : color 0 is not a color value : 0206 #footer p Value Error : color 0 is not a color value : 0 in both #footer and footer p change this color: 000000; to color: #000000;
June 6, 200818 yr I love how you guys repeated each other...lol Its what we get for all posting replies at the same time...and as we all said the same things it just shows we are right
Create an account or sign in to comment