Post your websites!

  • Thread starter sUn
  • 432 comments
  • 35,895 views
I'd need to see it to judge.

I know for a fact any drop down menus are a no no for eCommerce websites. Too many scrolling and clicking involves, it increases the bounce rate.

Edit: That could be used, makes the website feel less static.
 
Page is too wide for 1024x768 resolution
but I believe many people still using it
The home page, I see you just shrink the original images to fit the page
images don't look very sharp
and when I return to home, it takes a bit longer time to load
I don't it is coding or image size problem
 
Actually those are good points. The images really want resizing in Photoshop - resizing them on the page never works well. And it's worth resizing the main table to 1000px wide.
 
No, it works. Must have been offline at the time.

Not that my forum has any current membership (last post was probably 6 months ago), but less forums are usually a better start than too many non-posted forums...at least, that's my opinion.

Otherwise, the colors and structure are good; can read them easily, et cetera.
 
Made a website for promoting our local motocross track which certain people want to close. Someone else made a quick one for the protest march, but i made a completely new one.
It's in dutch, but if you want to see the pics of the manifestation it's on the foto's page.

www.mcmaaslandmoetblijven.tk
www.mcmaaslandmoetblijven.be.tt
you can pick a url, both links redirect to the same page.
 
Hey, it's been a while. Although I don't post here as much as I used to, I still visit regularly too see what designs other people have created. I've not been idle whilst I've been away, far from it! I have been busy studying, and learning the fundamentals of XHTML and CSS, and I feel that I am now at an advanced stage of understanding. I have a new exciting and experimental concept of my own to post in a few weeks, but for now I thought I'd critique Div's Remus design (with my new found understanding).

Right, I like your design Div, everything looks great, there are a few things I think that you could do differently with the structure and source though. I'm in the middle of creating a web design of my own, so I always look at the presentation, and hope to get some ideas from the code on how that site was created. I do this now with most sites I visit, so please don't think of this as a put down, it’s not my intention to rubbish you creation. think of it instead as helpful advice. If you were to post this on a proper CSS/HTML forum for critique, you could expect a similar response to mine (maybe not as long :crazy:).

Although my review looks thorough (sorry about the length :nervous:), it isn't. Most of it concerns the HTML structure of your document - the part no one sees, but probably the most important part of the document. I have not made a critique of the overall presentation, because I think the look is good.

Validate! Validate! Validate!

The w3c has two excellent validation services the html service can be found at: W3C Markup Validation Service and the CSS service can be found at: W3C CSS Markup Validation Service. use both of these frequently, as they can flag up errors you don't notice in your code, and they will help you achieve the standard (aka !DOCTYPE) easier than if you never used them at all. the first thing I did when I saw your code, was validate it with the W3C markup validation service. After looking at your nested tables layout, I was sure there were errors, and there were - 154 errors in fact! Not all were down to incorrect table design, some were a combination of other things. I then loaded the page up in Dreamweaver to get the unclosed tags fixed - I sure as hell wasn't going to leaf through the code looking for those errors! This of course flagged up the first most important flaw in your tabled design - maintainability.

Maintainability

This site is going to be an absolute nightmare to maintain! It was de rigueur to use tables back in the day, but nowadays, CSS positioning is the way. tabled designs, are slower, a lot harder to maintain, and are not at all accessible. your tabled design actually holds this site back. say for instance the site owner asked you to give each exhaust image a 10px margin, how would you do that? Your using inline style elements (on some images), which are a big no no because you will have to alter the style for each image separately, which (if you have more than a few) will be a right ball ache! if you were to separate presentation from content, then you could style the images separately through CSS, and you may only have to alter one statement for it to change all the images on your site.

Here is some sample CSS:

img {
margin:10px;
}


That’s how simple it is to give each image a 10px margin! Now if the same guy comes back to you later, and says 'Hey, I want a 5px margin and a 5px border too', you spend two seconds altering the above statement, like so:

img {
margin:5px;
border:5px solid #ff0;
}


All images on your site will now have a 5px margin, and a 5px border that is solid (as opposed to dashed, or dotted) and is of the color #ff0 - a rather loud yellow. I suppose, there is no accounting for taste!

CSS is powerful and very time friendly, you should use it as a matter of course!

!DOCTYPE

Respect for adding a !DOCTYPE, it shows that you are attempting to present an interoperable, standards-based web page. I did notice that you had kind of strangled off the full declaration though (by missing the W3C URL) :

Yours:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

Actual:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

There is nothing wrong with doing that, but for maximum accessibility, especially for older browsers, it might be advisable to keep the URL part of the declaration for now.

Markup Confusion

Following on from the !DOCTYPE declaration, I was a little confused by the style of your img and br tags. they were escaped like they would be if you had an XHTML !DOCTYPE, but you have declared an HTML 4.01 !DOCTYPE. Also, when you escape those elements, you need to keep a space between the end of the attributes, and the closing escape.

Yours:

<img src="http://www.remusexhaustshop.com/templates/001/images/logo-3.jpg" height="168" width="1024"/>

Correct:

<img src="http://www.remusexhaustshop.com/templates/001/images/logo-3.jpg" height="168" width="1024" />

If you intend to switch to an XHTML !DOCTYPE sometime in the future (which I recommend), remember to include an XML namespace declaration in the opening HTML tag, it will aid in interoperability i.e. <html xmlns="http://www.w3.org/1999/xhtml">.

Images

I thought your thumbnail images were a little iffy, but I couldn't put my finger on the problem. Then it hit me. View image, and you can see that you have chosen to use a larger image, and shrunk its dimensions through HTML markup. this is a bad move! browsers are not very good at scaling images, and that&#8217;s why your images look odd at smaller sizes. it would be better, and save you bandwidth, if you were to have a thumbnail, and a full size image, linked to it.

Another thing you need to look at is the enlarge image option. on the Audi 100 exhaust for instance, it only enlarges the overall picture by a few pixels (on other images, it does not alter the size at all!). I was expecting a bigger high resolution image of the exhaust manifold. Realistically, the enlarged image you used could have just been included in the item description.

You&#8217;re a little choppy with the old alt description too, it&#8217;s there sometimes, other times it&#8217;s not. To be on the safe side, always include an alt description, even if it is empty for instance alt="" would be fine. They are not mandatory with the !DOCTYPE you have used, but for future proofability, get into the habit of including them.

Here is an average link for an image on your site.

<a href="http://www.remusexhaustshop.com/ferrari-modena-f131-romulus-dual-tips-round-embossed-remus-sports-label-system-00up...
...-1990031578-p-698.html"><img width="126" height="93" border="0" title=" Ferrari 360 Modena F131 | 3.6L | Romulus Dual 2 tips round 3.31" embossed Remus Sports Label System 00-up [199003_1578] " alt="Ferrari 360 Modena F131 | 3.6L | Romulus Dual 2 tips round 3.31" embossed Remus Sports Label System 00-up [199003_1578]" src="images/199003_1578_b.jpg"/></a>


It could so easily be:

<a href="http://www.remusexhaustshop.com/ferrari-modena-p698.html"><img width="126" height="93" title="Ferrari 360 Modena F131 Romulus Dual 2 tips" src="images/199003_1578_b.jpg"/></a>

First Look at this (I removed the http://.www part, for obvious reasons):

...remusexhaustshop.com/ferrari-modena-f131-romulus-dual-tips-round-embossed-remus-sports-label-system-00up-1990031578-p-698.html

Is there a reason that you need a link to another document that is that long? I have a 1280x1024px display, and it takes up over 60% of the status bar area when I mouseover the link. On a 1024x768px display, it is nearly 90% - much too long! I always look at the status bar for the destination of a link, I like to know where I am going. The length of your link is totally unfriendly, and makes me feel a little uneasy about where the link is heading.

Next:

width="126" height="93" border="0"

It&#8217;s good that you have used width and height attributes, I use them myself, but (as I said earlier) you should stay well away from inline styles, especially depreciated styles like you have used with the 'border' attribute.

Ok, onto the title attribute:

title=" Ferrari 360 Modena F131 | 3.6L | Romulus Dual 2 tips round 3.31" embossed Remus Sports Label System 00-up [199003_1578] " alt="Ferrari 360 Modena F131 | 3.6L | Romulus Dual 2 tips round 3.31" embossed Remus Sports Label System 00-up [199003_1578]"


You want to look into your use of the title="" and alt="" elements in regard to how you have used them for describing the image they are related to (this image has no alt="" but others do). Personally, I think that you have used too much information within both elements - you in fact are using the whole description of the item, which overflows the size of the tooltip (aka title=""). I must also assume that it might also be too big for the alt="" attribute, which will, in turn, hurt accessibility. Try to keep both the title="" and alt="" attributes concise, and relevant.

Tables vs. CSS

Your CSS markup is a little patchy too. you&#8217;re using a combination of inline and linked styles. you should really be only using linked styles, as this will reduce the amount of changes you will make in the future, save you bandwidth, and save headaches further down the line. If you decide to alter the value of an element through CSS (at a later date), you may have a problem with specificity.

CSS styles cascade that is why they are called cascading style sheets! Styles you include in a linked stylesheet, are superseded by a style block in the head section, which in turn is superseded buy inline style definitions. So even if you declare a new style definition in a linked style sheet, it would have no effect on an element you were targeting if that element had an inline style - You have this problem on many elements.

As well as using a linked style sheet, you want to seriously look into creating a new design that is not based on tables. CSS is mature enough, and powerful enough to create a design identical, if not superior to yours. That design, would be lighter, more interoperable, accessible, and most importantly, a doddle to maintain and update. Tables should only be used for tabular data (as they were originally intended), and nothing else!

Further Reading

If you would like to learn more about how to create valid, accessible and future proof designs, here are a couple of educational, and inspirational websites, that are part of my web design knowledge base:

A List Apart

Aimed more at web design professionals than enthusiasts or beginners, A List Apart, is still a good solid reference if you are looking for information regarding web standards and accessibility. They have a wealth of knowledge that spans the length and breadth of design creation from initial concept, through to final presentation. There are literally hundreds of articles written by many of today&#8217;s best web design professionals. A must visit!

W3C Schools

This place is great! If you&#8217;re looking to expand your rudimentary knowledge of any part of web design, this site is for you. I learned the basic concept of XHTML, CSS, JavaScript, and PHP here, and I still go back if I need a little refresher! A great site, and another must visit.

CSS forums

This forum is great, and you can be assured of plenty of responses to your queries. If you&#8217;re stuck with CSS, ask the question here!

Veerle's blog

Looking for inspiration? Look no further than here! Apart from the striking design of her blog, Veerle is a professional web designer. She has many articles on the subject, and a wealth of links to many more on the web. Another must visit site!

If you&#8217;re looking into expanding your knowledge, you will have enough information there to get you started, Good luck mate!
 
Right, I've just redesigned one of my sites.

Accel - Thecarforum.net

I've only just released it, so there are probably a few bugs. I haven't had a chance to tidy up the code yet, I've just released it in a working order for my members. And I will get around to it - there are quite a few conflicting bits of CSS in there (not that you'd notice without looking at the source). Oh, and only the homepage, forum and satire pages are up and running. I haven't got around to adding any proper content to the site its self yet, and the galleries are teetering on the edge of the trash can.

Advice and critique is welcome.
 
Advice and critique is welcome.

Hola Jon! I've just had a look at your design, and I'm impressed! I can vaguely remember how your forum looked before, and to say that this is a change, is an understatement!

I like that you have two distinct parts now, the forum, and the blog. This is a good thing, and shows that your site is maturing, and that you are thinking up new ideas. 👍

If I may, I would like to make a little critique about the design of your new blog area. I won't talk about the structure and code this time as you are using a Wordpress template (yes?), and I know very little about that CMS. Like you have said, there are things that need ironing out, but your heading in the right direction (almost table-free, CSS, and an XHTML !DOCTYPE) 👍

First things first, I like the grey, I really like the grey. Its a nice shade, and grey seems to be the new black these days (my new design also uses grey).

OK, I like the header are of the page. The speedometer in the middle at the top is an excellent addition, and really focuses my attention to that area of the page once it loads up. very nice!

Going down the page from there I then notice the car, and then the 'Welcome to Accel' writeup. I feel that they look a little out of place where they are situated at present. My thinking is that maybe they would look cool if they were in the header area of the page - either side of the speedometer respectively. Obviously, there would be some changes to image sizes and code, but I think that they would look better there, and the the bottom line of the header area would split the section off nicely.

You also have a secondary 'go to forums' link below the Accel writeup, that I think would be redundant as you have a link below the header area that serves that purpose. If you chose to alter those areas, the main content section of the page would rise nicely, and flow on from the header area you have.

At the moment as I look down the page, I see header, image of car to the right, welcome to Accel lower, and to the left, and then the main content area. To me, that feels a little disjointed. I like the write up though, and the image is good too (have you though of using a random dynamically created image?)

Note: Clever! Very Clever! I've just noticed that your speedo is actually a clock! I was looking through your code, and I noticed the Macromedia codebase link. I was puzzled at first, but it looks cool anyway, showing the time too is a nice touch! 👍

I was just going to talk about having a visible login/register area on the blog page, and I noticed that you have one on the forum page (in the header area) but not on the blog page. I think you need a little bit of consistency with the the login/register area. From the main blog page, there is no indication that I could register or login. If I was a new visitor who wanted to register, I wouldn't know where to go. If you want to attract more members, you need to sort this out asap!

The articles on the main content page are good, the images look great, and once you have finalized the look, they will be a great area of this blog. Have you though about putting a white border around your images? Personally, I think they would look good with a border of some description maybe 5 or 10px, something like that. I like your entry headings, but feel that maybe the font size could be larger, or in capitals to distinguish itself from the rest of the text. I struggled like crazy to read the 'posted by' text for each entry, the grey is too similar to the background, maybe a darker/lighter or different colour would be better?

Also, I noticed this early on. You have kind of inverted your hyperlinks. Look at the entry headings, they are not immediately visible as hyperlinks (until moused over which reveals the underline and that nice shade of blue), but in the 'posted by' and in the blog entries they are orange hyperlinks that are underlined until they are moused over. To me that looks a liitle odd, but if your consistent with this, then it could be ok.

I was going to ask why comments were off, because I though it would be great to leave comments on the articles you have posted. Then through curiosity, I found out how and why - you click the title! This is a nice touch to link your blog entries into your forum, I've seen this done on other sites, and it is a nice way to link articles in your blog with discussions on your forum. Maybe you could include a 'discuss on forums' note in brackets or something to let new viewers know that they have that option.

Your quotes need a little work doing to them. Some are short, some are very long, and one has a larger font than the article itself. Maybe think about paraphrasing the longer quotes, expanding a little on the short ones, or do a total rewrite in your own style.

When I think about writing an article (or a post) I do the research and familiarize myself enough to be able to explain what I am saying and to convey the meaning of the references I have read. Think like you are writing an essay for college, use your own style, and come to a conclusion yourself. I would only then need to look at a link to the article if I was interested further. I like to read original compositions a lot more than quotes and comments. I think that you have a good opportunity to express yourself with your entries be creative!

Have you though about using the <blockquote> tag for your quotes? The <blockquote> tag is specially designed for, well block quotes! They add meaning to the content they enclose. If you combine that tag with the 'font-style:embarrassed:blique;' CSS rule, you would then have nice semantic, and italicized quotes which would set them apart from the rest of your content.

Quick W3C Schools Explanation

:eek: JESUS CHRIST!!! GET THOSE FONT TAGS OUT OF THERE AT ONCE JON! THEY HAVE NO PLACE IN ANY XHTML DOCUMENT!

Sorry Jon, I was just looking at the structure of your code to see how your quotes were formatted, and I noticed the tables first, then the <FONT> tags. There is no need for either of them there whatsoever. You could achieve the same effect with the <blockquote> tag, and a little CSS formatting.

Ok, last but not least (I bet your wondering if I'll ever finish!) The left had side navigation section panel is a nice touch, but it needs a little work on it. I'm assuming that this is local navigation. By local, I mean for the blog section as opposed to the forum or SaTire. I've used a similar method with my own design, and I think it is very useful.

The search feature needs fixing, its presentation is a little poor. I wasn't even aware I could type anything in there until I clicked in the area to the left. Your search box is not instantly recognizable as one, this causes problems with ease of use and accessibility. The blog archive sub section looks a little broken too. I assume that each entry is supposed to have its own highlight able button like the first and last options in that list has.

OH, I noticed you have RSS feeds. I loaded the one you have on the blog page, and... nothing happened. I got a 'failed to load' message. Maybe they need fixing? Also, have you thought about per entry RSS feeds? It is becoming more and more common, to have multiple RSS feeds on your blog. Most I visit nowadays have RSS links for every single entry that is posted. Maybe it would be overkill at the moment, but as your site grows, it could be a worthwhile option. 👍

OK, that is all for now, I need to go get some food for my girls. I hope my critique has helped a little (sorry about the length, at least its through!)

I like your design Jon, it has promise, Keep up the good work mate! 👍
 
Hola Jon! I've just had a look at your design, and I'm impressed! I can vaguely remember how your forum looked before, and to say that this is a change, is an understatement!

Glad you like it :)

I like that you have two distinct parts now, the forum, and the blog. This is a good thing, and shows that your site is maturing, and that you are thinking up new ideas. 👍

Good :) The forum is still the main focus (in fact the blog serves more as a portal than anything else).

If I may, I would like to make a little critique about the design of your new blog area. I won't talk about the structure and code this time as you are using a Wordpress template (yes?), and I know very little about that CMS. Like you have said, there are things that need ironing out, but your heading in the right direction (almost table-free, CSS, and an XHTML !DOCTYPE) 👍

Yes. I must admit that this is my first attempt at using Wordpress, and so I didn't really have the time or patience to create a whole new design for the blog. I'd actually been planning on using Joomla (and so spent most of my time doing a style for that), but it didn't work out (you'll see why in a minute). And yep, this is pretty much my first (relatively) table-less design. I must admit I haven't taken the plunge to completely rid my site of them (vBulletin uses a hell of a lot of tables, and it'd be a complete nightmare to remove them all).

First things first, I like the grey, I really like the grey. Its a nice shade, and grey seems to be the new black these days (my new design also uses grey).

Good good :)

OK, I like the header are of the page. The speedometer in the middle at the top is an excellent addition, and really focuses my attention to that area of the page once it loads up. very nice!

Excellent, just what I was going for :)

Going down the page from there I then notice the car, and then the 'Welcome to Accel' writeup. I feel that they look a little out of place where they are situated at present. My thinking is that maybe they would look cool if they were in the header area of the page - either side of the speedometer respectively. Obviously, there would be some changes to image sizes and code, but I think that they would look better there, and the the bottom line of the header area would split the section off nicely.

Mmm, I can see what you mean. I stuck that in as a bit of an afterthought, to be honest, and it's by no means permanment.

At the moment as I look down the page, I see header, image of car to the right, welcome to Accel lower, and to the left, and then the main content area. To me, that feels a little disjointed. I like the write up though, and the image is good too (have you though of using a random dynamically created image?)

It does a tad. To be perfectly honest the homepage I have now is by no means finished. I just found a Wordpress theme that fitted in reasonably well and moulded it to the right shape. I concentrated on the forums a lot more than anywhere else, really. That's where most of the activity goes on :dopey:

As for rotating images, I did consider that, but I thought it'd be a little too heavy on loading times. Also, I like to give each page its own different car (the Jag on the homepage, the Merc on the forums etc), and rotations wouldn't give quite the same effect.

Note: Clever! Very Clever! I've just noticed that your speedo is actually a clock! I was looking through your code, and I noticed the Macromedia codebase link. I was puzzled at first, but it looks cool anyway, showing the time too is a nice touch! 👍

Thank you :D. I got one of my members to sort it for me.

I was just going to talk about having a visible login/register area on the blog page, and I noticed that you have one on the forum page (in the header area) but not on the blog page. I think you need a little bit of consistency with the the login/register area. From the main blog page, there is no indication that I could register or login. If I was a new visitor who wanted to register, I wouldn't know where to go. If you want to attract more members, you need to sort this out asap!

I've tried that many times, sadly. Having a login on the homepage proves surprisingly difficult, though - the vB-wordpress integration systems all seem to have their downsides, and it's just not worth it in the end. A register link is absolutely possible, but I've got to be careful not to make it look too much like an integration that doesn't work. But hey, I've got to replace the "Welcome" bit anyway, so I'm sure I'll come up with something. :)

The articles on the main content page are good, the images look great, and once you have finalized the look, they will be a great area of this blog. Have you though about putting a white border around your images? Personally, I think they would look good with a border of some description maybe 5 or 10px, something like that. I like your entry headings, but feel that maybe the font size could be larger, or in capitals to distinguish itself from the rest of the text. I struggled like crazy to read the 'posted by' text for each entry, the grey is too similar to the background, maybe a darker/lighter or different colour would be better?

Quite possible :) And that's just one of the many things that need altering there. It's alright temporarily, but orange does stick out after a while.
Also, I noticed this early on. You have kind of inverted your hyperlinks. Look at the entry headings, they are not immediately visible as hyperlinks (until moused over which reveals the underline and that nice shade of blue), but in the 'posted by' and in the blog entries they are orange hyperlinks that are underlined until they are moused over. To me that looks a liitle odd, but if your consistent with this, then it could be ok.

Mmmm, I know. This was actually my original design idea (apart from the sidebar): http://www.thecarforum.net/v6test/

That's on a Joomla installation, so obviously it'd have to be changed to fit the new software. That's what I hope to get it looking like at some point. I just wanted to get some sort of homepage up alongside the forums.


I was going to ask why comments were off, because I though it would be great to leave comments on the articles you have posted. Then through curiosity, I found out how and why - you click the title! This is a nice touch to link your blog entries into your forum, I've seen this done on other sites, and it is a nice way to link articles in your blog with discussions on your forum. Maybe you could include a 'discuss on forums' note in brackets or something to let new viewers know that they have that option.

Sounds good - and actually something included on the link I posted above :)

Your quotes need a little work doing to them. Some are short, some are very long, and one has a larger font than the article itself. Maybe think about paraphrasing the longer quotes, expanding a little on the short ones, or do a total rewrite in your own style.

Yes, apologies for that. That's purely because the posts are in fact automatically fetched from the forum's rss feed. The one that's the wrong font (the Scion XP) is like that because I wrote it when using the previous forum style (which used Verdana). Usually it doesn't include a specified font in the post and uses whatever is default, but for some reason it did, and was then transferred to the homepage.

As for the articles themselves, indeed they could use a little more work. As I said, they're actually written for the Car News forum, and so act more as headlines than a full article. I'll keep an eye on what I'm posting, though.

Have you though about using the <blockquote> tag for your quotes? The <blockquote> tag is specially designed for, well block quotes! They add meaning to the content they enclose. If you combine that tag with the 'font-style:embarrassed:blique;' CSS rule, you would then have nice semantic, and italicized quotes which would set them apart from the rest of your content.


Quick W3C Schools Explanation

:eek: JESUS CHRIST!!! GET THOSE FONT TAGS OUT OF THERE AT ONCE JON! THEY HAVE NO PLACE IN ANY XHTML DOCUMENT!

Sorry Jon, I was just looking at the structure of your code to see how your quotes were formatted, and I noticed the tables first, then the <FONT> tags. There is no need for either of them there whatsoever. You could achieve the same effect with the <blockquote> tag, and a little CSS formatting.

Again, I've really just plucked this template out of Wordpress.com and made the odd alteration, so it's by no means finished. I don't know whether they're Wordpress or vBulletin's doing, but I haven't payed much attention to the strict-ness of the code :P

Ok, last but not least (I bet your wondering if I'll ever finish!) The left had side navigation section panel is a nice touch, but it needs a little work on it. I'm assuming that this is local navigation. By local, I mean for the blog section as opposed to the forum or SaTire. I've used a similar method with my own design, and I think it is very useful.

It's actually a bit of a pain. The skin I chose doesn't appear to include navigation down the side, but instead uses it for the archive and my friends. But hey, it'll be gone soon :D

The search feature needs fixing, its presentation is a little poor. I wasn't even aware I could type anything in there until I clicked in the area to the left. Your search box is not instantly recognizable as one, this causes problems with ease of use and accessibility. The blog archive sub section looks a little broken too. I assume that each entry is supposed to have its own highlight able button like the first and last options in that list has.

Agreed. I did have a Safari-style box ready to go, but it got left out for some reason.

OH, I noticed you have RSS feeds. I loaded the one you have on the blog page, and... nothing happened. I got a 'failed to load' message. Maybe they need fixing? Also, have you thought about per entry RSS feeds? It is becoming more and more common, to have multiple RSS feeds on your blog. Most I visit nowadays have RSS links for every single entry that is posted. Maybe it would be overkill at the moment, but as your site grows, it could be a worthwhile option. 👍

Certainly possible 👍

OK, that is all for now, I need to go get some food for my girls. I hope my critique has helped a little (sorry about the length, at least its through!)

I like your design Jon, it has promise, Keep up the good work mate! 👍

Thanks :) And thanks for the suggestions, I'll certainly keep them in mind for the future. (Length? Pffft, I'd rather have a long list than "yeah, it's good" anyday ;))

Oh, and for the record, I dumped Joomla because there weren't any fully developed RSS aggregators available. I used one for a while, but it refused to automatically publish items to the homepage and had been abandoned by its creators.
 
Those are gorgeous! Those will definately serve as inspiration for some of my next projects (I've got 2 other sites to sort out that I just can't face right now). Thanks 👍
 
👍 Glad my advice was of use to you!

Anyway, I was surfing the WWW, I came across these three pages. I remember you saying that you were using wordpress themes, and these themes would be right up your street. There are plenty here to look at for inspiration and download, take a look! :dopey:

10 Fresh, Elegant and Clean Wordpress Themes

21 Fresh, Usable and Elegant Wordpress Themes

83 Beautiful Wordpress Themes You (Probably) Haven’t Seen

Knock yourself out! 👍

Thanks Ive been looking for some really nice looking themes for days now. Just about to host my own blog but its proving a pain, I have no idea about scripting at all, and TBH I have no idea how to creat a database for wordpress to load fully. thanks tho :D
 
Need any help? I'm no use when it comes to Wordpress' code, but if you need to add an mysql database I can help. PM me and I'll gladly walk you through it :)
 
I'm glad you fixed the width issues with this site, but there are still a couple of things that could do with changing. The way you just resize the image on the page and not the source image, for example. But hey, it's a work in progress :)
 
Much better on the images front 👍

You might want to give the Navigation header a red background, and do the same for the adsense - y'know, for continuity. And I can't quite work out what the thing that says "Compare!" does - it just looks a little out of place.
 
I like the colour scheme, I like the flash, I like it 👍

One thing I'd do is stick a different coloured background behind the main content so that it looks less fluid. And I'd maybe remove the car from the banner, although that's just me.
 
Still working on this, but it'll be the website for the graphics portion of Fusion once I finish it. Everything but the front page is up in the air.

http://myfishwillcutyou.com (The domain name is a long story)

Everything but the front page is in the air, and most of it doesn't work.
 
Looking good so far, Burnout 👍

Thats all i need to know.

Right, right, just the whole design then...

I don't know what you mean by "good layout" exactly, but just download a few invisionfree themes (by download I mean copy the source into dreamweaver), read a few tutorials and then fiddle around until you're happy with the look. It's 90% CSS based, which is easy as pie when you realise the code is in a format of its self.

We can't sit down and spend hours "teaching" you how to design something. It's up to you. Like I said, work out the basics, then have a play around until you're happy.
 
Not bad, Franz 👍. I wouldn't have the edges so rounded, and I'd lower the text size on the main content though.


I decided I needed to actually get my own site up and running (it's currently an empty blog in some hideous downloaded theme), so I knocked this up in Photoshop quickly.



Clicky for biggerer

Any suggestions before I actually make it, so to speak?
 
Not bad, Franz 👍. I wouldn't have the edges so rounded, and I'd lower the text size on the main content though.


I decided I needed to actually get my own site up and running (it's currently an empty blog in some hideous downloaded theme), so I knocked this up in Photoshop quickly.



Clicky for biggerer

Any suggestions before I actually make it, so to speak?

You're off to a good start, but what is the actual theme? I see a skyscraper, some splatters, fonts that don't really go together.. Don't get me wrong, it's looking decent, but you need to get a focus and stick with it.

Also, the area on the top left of the site, your most valuable realestate, has absolutely nothing in it. Just a heads up.
 
Back