49 Replies - 4064 Views - Last Post: 15 April 2011 - 07:47 PM
#31
Re: A work in progress
Posted 11 April 2011 - 02:55 AM
#32
Re: A work in progress
Posted 11 April 2011 - 05:44 AM
#33
#34
Re: A work in progress
Posted 11 April 2011 - 06:59 AM
#35
Re: A work in progress
Posted 11 April 2011 - 09:25 AM
http://neverpool.com
Look at my old source:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="Personal website hosting the projects of Logan Creech" /> <title>Logan Creech</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="container"> <div id="main"> <div class="navouter"> <div class="navcontent"> <h3>Navigation</h3> <ul> <li><a href="index.html">Main</a></li> <li><a href="projects.html">Projects</a></li> <li><a href="contact.html">Contact</a></li> <li><a href="links.html">Links</a></li> </ul> </div> </div> <h1 class="header">Logan Creech Programming</h1> <p>Welcome to my website! I've been hard at work on this new template (not really, I spent like 2 hours on it, new record!) and I'm rather proud of it. I'll be posting whatever projects I happen to be working on at the moment here as well.</p> <p>If you are looking for my old Elder Scrolls site, check here: <a href="http://obj.neverpool.com">link</a></p> </div> <div id="footer"> <p>© Logan Creech 2011</p> </div> <div id="hidden"> :D/> </div> </div> </body> </html>
New source:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="Personal website hosting the projects of Logan Creech" /> <title>Logan Creech</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="wrap"> <div id="header"><h1>Logan Creech Programming</h1></div> <div id="main"> <br /> <br /> <p>I've redone the website to show up with two columns, so my navigation bar is on its own and not inside my main content box. Check out my thread on it on DIC by following this <a href="http://www.dreamincode.net/forums/topic/225924-a-work-in-progress/">link</a></p> <p>If you are looking for my old Elder Scrolls site, check here: <a href="http://obj.neverpool.com">link</a></p> </div> <div id="sidebar"> <h2>Navigation</h2> <ul> <li><a href="index.html">Main</a></li> <li><a href="projects.html">Projects</a></li> <li><a href="contact.html">Contact</a></li> <li><a href="links.html">Links</a></li> </ul> </div> <div id="footer"> <p>© Logan Creech 2011</p> </div> </div> </body> </html>
#36
Re: A work in progress
Posted 11 April 2011 - 09:50 AM
Just remember though with a colour scheme like this, anyone who is visually impaired or has colour blindness won't be able to view/see or interact with your website. I know that colour-blind people aren't the majority of the web population but, if you have information their looking for they won't be able to find it with these colours.
Now, this many not be important for this project in particular or the purpose of this site (to reach a maximum audience/specific group) but just something to keep in mind when doing colour layouts.
For the record, oranges and blues (although composite colour) are the best for visually impaired people if you're trying to make a fully accessible site. Besides that, keep up the good work!
#37
Re: A work in progress
Posted 11 April 2011 - 10:10 AM
Vip3rousmango, on 11 April 2011 - 11:50 AM, said:
Just remember though with a colour scheme like this, anyone who is visually impaired or has colour blindness won't be able to view/see or interact with your website. I know that colour-blind people aren't the majority of the web population but, if you have information their looking for they won't be able to find it with these colours.
Now, this many not be important for this project in particular or the purpose of this site (to reach a maximum audience/specific group) but just something to keep in mind when doing colour layouts.
For the record, oranges and blues (although composite colour) are the best for visually impaired people if you're trying to make a fully accessible site. Besides that, keep up the good work!
I've been throwing around the idea of letting people switch the color scheme.
Like a link the the bottom right that switches the CSS sheet.
#38
Re: A work in progress
Posted 11 April 2011 - 10:41 AM
A good practice to tell if your HTML is good is to take away the style sheet, if the page still makes logical sense you're good to go.
Typical modules you'll want to have are, in order: Header, Navigation, Sub Navigation, Main Content, Sub Content, Advertisements, Footer. This isn't to say that's definitive, but a basic layout. Limit the number of divs you have to the bare minimum to satisfy that and having a container element to allow for a gutter.
EDIT - Color scheme testing.
Take a screenshot of your site and desaturate it, if it is still easily readable then you're fine when it comes to people with color blindness.
This post has been edited by Lemur: 11 April 2011 - 10:44 AM
#39
Re: A work in progress
Posted 11 April 2011 - 10:54 AM
NeverPool, on 11 April 2011 - 12:10 PM, said:
Vip3rousmango, on 11 April 2011 - 11:50 AM, said:
Just remember though with a colour scheme like this, anyone who is visually impaired or has colour blindness won't be able to view/see or interact with your website. I know that colour-blind people aren't the majority of the web population but, if you have information their looking for they won't be able to find it with these colours.
Now, this many not be important for this project in particular or the purpose of this site (to reach a maximum audience/specific group) but just something to keep in mind when doing colour layouts.
For the record, oranges and blues (although composite colour) are the best for visually impaired people if you're trying to make a fully accessible site. Besides that, keep up the good work!
I've been throwing around the idea of letting people switch the color scheme.
Like a link the the bottom right that switches the CSS sheet.
Ohhh! Love it! Having the ability to change colours defiantly could improve the accessibility of the site if that's what you're planning. If you also take into consideration what Lemur posted previously, then adding this type of feature isn't too much extra work.
#40
Re: A work in progress
Posted 11 April 2011 - 11:09 AM
Lemur, on 11 April 2011 - 12:41 PM, said:
Take a screenshot of your site and desaturate it, if it is still easily readable then you're fine when it comes to people with color blindness.
I've never tried that! Good idea. Would this work for both types of colorblindness? (lack of red and/or green hues)
Sorry, didn't mean to change the topic though. Maybe this should be a separate topic under web design/development?
#41
Re: A work in progress
Posted 11 April 2011 - 11:14 AM
Saturation - A minimalist theme should have high saturation colors, but only 1 or 2. A theme with multiple high saturation is a distraction and should be avoided.
Hue - Conflicting hues of colors, or colors that are too close on the spectrum to eachother can make reading difficult and distinguishing even worse in some cases.
Brightness - Dark blue is amazing on white and light but once it hits a dark theme it becomes completely unreadable.
EDIT - When it comes to color theme shifters be extremely careful. That means everything has to shift almost like a skins system. If not, the site will fall to pieces design wise.
This post has been edited by Lemur: 11 April 2011 - 01:12 PM
#42
Re: A work in progress
Posted 11 April 2011 - 06:51 PM
http://neverpool.com
http://neverpool.com/wp
#43
Re: A work in progress
Posted 11 April 2011 - 06:54 PM
#44
Re: A work in progress
Posted 11 April 2011 - 07:06 PM
#45
Re: A work in progress
Posted 11 April 2011 - 08:59 PM
Other than that your off to a great start.
|
|

New Topic/Question
Reply




MultiQuote










|