Website Critiques
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignWebsite Critiques

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 24th, 2009, 10:16 PM
KP77 KP77 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2009
Location: ohio
Posts: 3 KP77 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 54 m 14 sec
Reputation Power: 0
MySpace
Question Css help/testing

Quote:
#body {

margin:auto;

background:#fcfff0;

color:rgb(16%, 14%, 13%);

text-align:center;

width:640px;

}



#outer {

text-align:center;

border:0px solid #325C74;

width:640px;

margin:auto;

}



#header {

height:100px;

background:#fcfff0;

color:rgb(16%, 14%, 13%);

}



#bar {

height:25px;

background:#fcfff0;

color: rgb(16%, 14%, 13%);

border:6px solid #325C74;

text-align:center;

}



#cont{

height:380px;

width:628px;

background:#fcfff0;

color:rgb(16%, 14%, 13%);

border:6px solid #325C74;

margin:auto;

text-align:center;

}



#left {

float: left;
height:380px;

width:200px;

background:#fcfff0;

color:rgb(16%, 14%, 13%);

border:0px solid #325C74;

text-align:center;

}



#right {

float: right;
height:380px;

width:200px;

background:#fcfff0;

color:rgb(16%, 14%, 13%);

border:0px solid #325C74;

text-align:center;

}



#footer {

height:40px;

width:628px;

background:#fcfff0;

color:rgb(55%, 9%, 9%);

border:6px solid #325C74;

margin:auto;

text-align:center;

}



my question is there anything I need to do to make it better
I'm still learning css
I have tested it at w3 and its passed at all levels but I get 7 warning at css3

Reply With Quote
  #2  
Old April 25th, 2009, 04:24 PM
Skipt's Avatar
Skipt Skipt is offline
Eager to learn
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2009
Location: Maryland, USA
Posts: 2,215 Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 84 Folding Title: Novice Folder
Time spent in forums: 3 Weeks 3 Days 6 h 32 m 28 sec
Reputation Power: 2178
Facebook
There's nothing wrong with the code, except on #footer, add clear:both;. I also don't recommend having a fixed height, or width. I much prefer min-width, max-width, and using %'s. Without a link, there's not much else I can say
__________________
"Quality of responses may vary. I reserve the right to change my mind for any reason what-so-ever without admitting I was wrong. I'd prefer to change your mind however, it's easier on my ego". - jwdonahue

"so no-one has actually bothered to post an original quote ? what's wrong with making up your own?"
- marnixR

Reply With Quote
  #3  
Old April 25th, 2009, 05:29 PM
holodoc's Avatar
holodoc holodoc is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Mar 2004
Location: Kostolac, Serbia
Posts: 855 holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level)holodoc User rank is General 6th Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Weeks 5 Days 4 h 47 m 40 sec
Reputation Power: 1390
There are two things I would like to comment on your CSS.

First of all you don't need to specify additional values for your selector's properties if one of them is going to completely cancel the effect of even showing it. Look at the following selector:
Code:
border:0px solid #325C74;

By specifying a value of 0px (xp is btw redundant here) for border width you do not need to specify the border type (solid) and border color (#325C74). This might seem unimportant to some but when you begin to create large CSS files with lots of selectors which contain redundant values you will get files with lot of unnecessary junk in it.

Also there is nothing wrong with using percentage values in your RGB color specifications but to be honest I never even came close to a CSS rule that was using repcentages to define color values and not be actually a part of a tutorial which was simply explaining that percents can be used to specify color values. Most of the time you will be using hexadecimal values so it might be a good idea for you to start learning the hex system in a way to at least have a feeling which color will be produced with a certain hexadecimal color value combination.

As for the warnings you get ignore them. The W3 CSS validator is not so perfect after all since it gives you warnings for things that do not exist in your code.
__________________
PHP Code:
<?php
abstract class Ignorance extends Stupidity implements Unavoidable 
     public static 
$humiliation

     private function 
__construct(){
        
parent::__destruct();
     }; 

?>

Last edited by holodoc : April 25th, 2009 at 05:38 PM.

Reply With Quote
  #4  
Old April 25th, 2009, 07:23 PM
KP77 KP77 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2009
Location: ohio
Posts: 3 KP77 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 54 m 14 sec
Reputation Power: 0
MySpace
thanks for your advice guys
you could check my profile for the link to my website since i can't post a links yet

Reply With Quote
  #5  
Old April 26th, 2009, 10:30 AM
Skipt's Avatar
Skipt Skipt is offline
Eager to learn
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2009
Location: Maryland, USA
Posts: 2,215 Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)Skipt User rank is General 18th Grade (Above 100000 Reputation Level)  Folding Points: 84 Folding Title: Novice Folder
Time spent in forums: 3 Weeks 3 Days 6 h 32 m 28 sec
Reputation Power: 2178
Facebook
So now you want a site critique? Hopefully a moderator could move the thread.

For those of you who don't want to open up his profile. The link is here:

http://www.angelfire.com/games3/twrt/

1. I don't like the width of the site. I don't want to scroll horizontally to reach content. Nor do most users.
2. Below the ad, that box I thinik should be centered between the top row instead of the center of the screen, unless you choose to center the ads and make them smaller
3. Style up the navbar a bit. It really is quite plain
4. "This site is best viewed in Firefox or Safari ". Try making your site work in all browsers
Comments on this post
ChiefWigs1982 disagrees: This could be one of the most hypocritical posts I've ever seen. :/

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignWebsite Critiques > Css help/testing

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap