Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Validation

Featured Replies

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.. :p

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.

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 :)

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: center

145 .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 : 0

206 #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;

I love how you guys repeated each other...lol :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 :lol:

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.