|
Posted by Rik on 11/25/53 11:49
Chaddy2222 wrote:
> Hi all.
> I am currently re-designing my site to use a CSS based layout. I was
> just wandering if anyone could give me some feedback on how it looks,
> suggestions on how it could be improved that sort of thing.
> The test page is at: http://freewebdesign.cjb.cc/test
> Only the index page is up at this stage, I will add content and build
> the site from the index page once it's working well.
<meta http-equiv="Content-Type" content="application/xhtml+xml;
charset=ISO-8859-1" />
Hmmmmz, not sure wether the choice "application/xhtml+xml" was appropriate,
but I've forgotten the exact rules :-).
<div id="header"><h1>Free Web Design Online!</h1></div>
Why wrap it in a div? What layout are you giving it, that you cannot apply
to the h1 directly? Div's are nice, but terribly overused. If there's a
better tag, use it, maybe using a couple of different classes.
Navigation: it's actually a list, you might consider making it one,
allthough removing the standard browser presentation is a pain. You seems to
have started out like that, considering the seemingly useless:
list-style-type's in the "a" markup.
From a graphical point of view:
H1: try some padding on the left, I think that will look a lot better, but
that's personal taste.
The "navigation" at the top is not enough "seperated", in Opera 8.52 I can
hardly make out that it's not just one link. Also: try to be consistent in
the use of capital letters. Now it's mostly random.
Text color is OK to my young eyes, but I'd imagine that for some people i
could use a bit more contrast.
I'd suggest using this in the body:
<body>
<h1> Free Web Design Online!</h1>
<ul>
<li><a href="#" title="Home" class="on">Home</a></li>
<li><a href="index.html">About Us </a></li>
<li><a href="index.html">Web Design </a></li>
<li><a href="index.html">Contact us </a></li>
</ul>
<h2>Welcome To Free Web Design Online!</h2>
<p>This page is a template for the new look version of the site.<br />The
page has been created useing XHTML and CSS for better markup and
useability... We hope you like it.......</p>
<ul>
<li><a href="index.html">Contact us</a></li>
<li><a href="index.html">About us </a></li>
<li><a href="index.html">Example Sites </a></li>
</ul>
Copyright © 2006 Free Web Design Online! All Rights Reserved.
</body>
And adjust your css accordingly.
About using lists: http://css.maxdesign.com.au/listamatic/ contains a lot of
examples of how to whip them into the shape you want.
I applaud the use of relative sizes for text instead of px (or even worse,
pt..).
Grtz,
--
Rik Wasmus
Navigation:
[Reply to this message]
|