![]() |
|
|
|||||||
![]() |
|
|
Thread Tools | Rate Thread |
|
|
PM User | #1 |
|
Regular Coder ![]() Join Date: Jan 2007
Posts: 123
Thanks: 20
Thanked 1 Time in 1 Post
![]() |
Site Review
Hi,
Can you review the general layout of my site please. I realise that the 3rd menu button rollover doesn't look good. Still working on that one. Thanks http://nicks-world.co.uk/tt/ |
|
|
|
|
|
PM User | #2 |
|
Senior Coder ![]() ![]() Join Date: Dec 2007
Posts: 4,658
Thanks: 374
Thanked 562 Times in 551 Posts
![]() ![]() |
attribute names must be lower case and you miss few alt attributes:
http://validator.w3.org/check?verbos....co.uk%2Ftt%2F I don't like the right side div, it overlap the text. you must have a footer or padding bottom. I'm not sure but I think is something wrong with js at first load, I can't reproduce. I like the layout idea. regards Last edited by oesxyl; 04-29-2008 at 12:02 AM.. |
|
|
|
| Users who have thanked oesxyl for this post: | cheechm (04-29-2008) |
|
|
PM User | #3 |
|
Regular Coder ![]() Join Date: Jan 2008
Location: Milwaukee, WI
Posts: 722
Thanks: 8
Thanked 96 Times in 95 Posts
![]() |
looks nice enough, i'd maybe rethink the tabs bit a little, it just looks too large & a little, i don't quite know how to describe it, but it just doesn't feel quite right. also, ie7 at least, your layout gets broken while resizing the window.
__________________
-Mike "Want me to precludify him, like some kind of dispatcherator?... Can do!" -Bender |
|
|
|
| Users who have thanked mjlorbet for this post: | cheechm (04-29-2008) |
|
|
PM User | #5 |
|
Regular Coder ![]() Join Date: Jan 2008
Location: Milwaukee, WI
Posts: 722
Thanks: 8
Thanked 96 Times in 95 Posts
![]() |
set your sizes based on the percentage of the screen they should take up instead of a concrete size, that way the content will scale to match the browser's current size
__________________
-Mike "Want me to precludify him, like some kind of dispatcherator?... Can do!" -Bender |
|
|
|
|
|
PM User | #7 | |
|
Senior Coder ![]() ![]() Join Date: Dec 2007
Posts: 4,658
Thanks: 374
Thanked 562 Times in 551 Posts
![]() ![]() |
Quote:
- overflow: hidden, make it auto or better remove it - put all content in a wrapper div, and clear at the end( you use float) with clear: both - table for layout, is not good, use a div instead - right side, must be float left too. - don't use position absolute regards |
|
|
|
|
|
|
PM User | #8 |
|
Regular Coder ![]() Join Date: Jan 2008
Location: Milwaukee, WI
Posts: 722
Thanks: 8
Thanked 96 Times in 95 Posts
![]() |
not really, but here's what you can do; if you've given your elements ids then you can use a script like this
Code:
var elements = document.getElementsByTagName("div");
for(var a = 0; a < elements.length; a++)
alert(elements.id + " :: WIDTH: " + parseInt(elements.style.width)*100/document.documentElement.clientWidth + "% HEIGHT: " + parseInt(elements.style.height)*100/document.documentElement.clientHeight);
__________________
-Mike "Want me to precludify him, like some kind of dispatcherator?... Can do!" -Bender |
|
|
|
|
|
PM User | #9 | |
|
Senior Coder ![]() ![]() Join Date: Dec 2007
Posts: 4,658
Thanks: 374
Thanked 562 Times in 551 Posts
![]() ![]() |
Quote:
regards |
|
|
|
|
|
|
PM User | #10 |
|
Regular Coder ![]() Join Date: Jan 2008
Location: Milwaukee, WI
Posts: 722
Thanks: 8
Thanked 96 Times in 95 Posts
![]() |
that's not to fix it, it's to get the values for him so he doesn't have to do the division by hand
__________________
-Mike "Want me to precludify him, like some kind of dispatcherator?... Can do!" -Bender |
|
|
|
|
|
PM User | #14 |
|
Regular Coder ![]() Join Date: Jan 2008
Location: Milwaukee, WI
Posts: 722
Thanks: 8
Thanked 96 Times in 95 Posts
![]() |
if you only set the width or only set the height it'll be fine, if you set both then it'll do bad things. setting one or the other will keep the aspect ratio constant.
__________________
-Mike "Want me to precludify him, like some kind of dispatcherator?... Can do!" -Bender |
|
|
|
|
|
PM User | #15 | |
|
Senior Coder ![]() ![]() Join Date: Dec 2007
Posts: 4,658
Thanks: 374
Thanked 562 Times in 551 Posts
![]() ![]() |
Quote:
Change what I said in my post and will work. Probably after that you must also make some adjustment to get what you want. Your layout idea is fine, I like it, ![]() regards |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Rate This Thread | |
|
|