Website Critiques
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
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, 11: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, 05:24 PM
Skipt's Avatar
Skipt Skipt is offline
CSS Guru in Training
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2009
Location: Maryland, USA
Posts: 2,044 Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)  Folding Points: 84 Folding Title: Novice Folder
Time spent in forums: 3 Weeks 1 Day 1 h 59 m 48 sec
Reputation Power: 1225
Send a message via AIM to Skipt
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

Reply With Quote
  #3  
Old April 25th, 2009, 06: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: 663 holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level)holodoc User rank is General (90000 - 100000 Reputation Level) 
Time spent in forums: 2 Weeks 1 Day 15 h 35 m 6 sec
Reputation Power: 980
Send a message via Google Talk to holodoc Send a message via Skype to holodoc
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

     final function 
findCover(); 

?>

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

Reply With Quote
  #4  
Old April 25th, 2009, 08: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, 11:30 AM
Skipt's Avatar
Skipt Skipt is offline
CSS Guru in Training
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2009
Location: Maryland, USA
Posts: 2,044 Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)Skipt User rank is General 4th Grade (Above 100000 Reputation Level)  Folding Points: 84 Folding Title: Novice Folder
Time spent in forums: 3 Weeks 1 Day 1 h 59 m 48 sec
Reputation Power: 1225
Send a message via AIM to Skipt
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


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




 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

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




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
Stay green...Green IT