» Site Navigation
1 members and 697 guests
Most users ever online was 47,180, 07-16-2025 at 05:30 PM.
» Today's Birthdays
» Stats
Members: 75,905
Threads: 249,107
Posts: 2,572,117
Top Poster: JLC (31,651)
|
-
alrite im going to type my thoughts as I browse
so im at the homepage and first thing I notice is the very blue background, that take up more area than the content does, i realize it is perfect size for 1024x768 resolution, which is no doubt the most common res size. but on higher resolution screens there is more blue background than content. As a quick fix I would suggest using a lighter color or if your able to, a light gradient background. would at least not make the background look so bold compared to the content on bigger screens. Again only a suggestion, not sure how much you can do, i see you used some sort of site builder, but ill post the code since I happened to have it right in front of me.
instead of
Code:
<style type="text/css">
body {
background-color:#0d064a;
color: white;
}
try
Code:
<style type="text/css">
body {
background-color:#hex for light color; /*for a browser that is not IE webkit based or firefox*/
background: -webkit-gradient(linear, left top, left bottom, from(#color1), to(#color2));/*chrome n safari*/
background: -moz-linear-gradient(top, #color1, #color2);/*firefox*/
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#color1', endColorstr='#color2');/*ie*/
}
ideally though, you want your content to be fluid and grow with the bigger screen, but again i have no idea how much you can do with those web builders.
i saw someone already mentioned the apparent double logo, but it does stick out.
so im looking at pictures on the home page and my mouse turns into the selectable mouse, so i click on the pictures but they don't do anything, so either make them do something, or dont make my mouse change lol. also I see the file names of the pictures when i hover over them. I really dont need to know it's picture random letters and numbers 
Lay out looks nice, page animations are smooth. I think the picture layout is great. only other thing I really notice is the email isn't clickable, you can easily do this by changing your email to this...
Code:
<a target="_blank" href="mailto:pythons@wtfmorphsofmanchester.com">pythons@wtfmorphsofmanchester.com</a>
bout all i got
Last edited by OhhWatALoser; 08-13-2012 at 07:19 PM.
-
The Following User Says Thank You to OhhWatALoser For This Useful Post:
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|