Graphic Design Forum and Web Design Forum  

Go Back   Graphic Design Forum and Web Design Forum »Web Design Forum »General Web Design Forum

Notices

General Web Design Forum Discuss General Web Design Issues


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 09-05-2008, 04:38 PM
zumojuice's Avatar
Experimental Member
 
Join Date: Feb 2007
Location: York
Posts: 2,296
Default Interesting navigation.....

Suisse Design & Art Direction
__________________
Richard Gray - Graphic Designer
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #2 (permalink)  
Old 09-05-2008, 04:45 PM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Yorkshire, England
Posts: 2,173
Default

Yeah, not bad. Should be done with CSS though - it's a bit inaccessible.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #3 (permalink)  
Old 09-05-2008, 04:47 PM
zumojuice's Avatar
Experimental Member
 
Join Date: Feb 2007
Location: York
Posts: 2,296
Default

could you do that with css?
__________________
Richard Gray - Graphic Designer
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #4 (permalink)  
Old 09-05-2008, 05:55 PM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Yorkshire, England
Posts: 2,173
Default

I could
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #5 (permalink)  
Old 09-05-2008, 06:57 PM
jeffross's Avatar
Command Z aficionado
 
Join Date: Mar 2008
Location: Boise, Idaho, USA
Posts: 276
Default

Quote:
Originally Posted by PR Design View Post
I could
PR's not called the CSS Wizard for nothing!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #6 (permalink)  
Old 09-05-2008, 11:25 PM
zumojuice's Avatar
Experimental Member
 
Join Date: Feb 2007
Location: York
Posts: 2,296
Default

Give the the basis of that in CSS ? in layman's terms...
__________________
Richard Gray - Graphic Designer
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #7 (permalink)  
Old 10-05-2008, 12:36 AM
tommylogic's Avatar
Markup Validation Nazi
 
Join Date: Apr 2007
Location: USA
Posts: 3,538
Default

a:hover with an alternate image... maybe throw in some opacity trickery
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #8 (permalink)  
Old 10-05-2008, 12:55 AM
LeadMagnet's Avatar
Mr. Tambourine Man
 
Join Date: Jun 2007
Location: Ireland
Posts: 1,085
Default

The problem with that solution tommy is that the hover area is much smaller than the image being changed. Also, the images overlap with those of its neighbours.
I can't think of how to do that without using a bit a of javascript at least.
*edit* Unless i surrounded the hover area with some other divs and did something like this:

Code:
#div1 {
background-image:url(yellow.jpg);
width:50px;
height:50px;
position:absolute;
top:0px;
left:0px;
z-index:1;
}
#div1:hover {
background-image:url(black.jpg);
width:300px;
height:300px;
z-index:2;
}
#div2{
width:300px;
height:250px;
position:absolute;
top:50px;
left:0px;
z-index:3;
}
#div3{
width:250px;
height:50px;
position:absolute;
top:0px;
left:50px;
z-index:3;
}
Is that it? Is there some way to avoid surrounding the button div? Let's hear your solution harry.
__________________
Subtlety is my middle name... and first and last in case you didn't get the point.

Last edited by LeadMagnet; 10-05-2008 at 01:36 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #9 (permalink)  
Old 10-05-2008, 08:24 AM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Yorkshire, England
Posts: 2,173
Default

I did a similar thing here, so to get the above all I'd need to do was put a different bg image on the hover state.

EDIT: It's made with a <ul> and a variety of <li>s making the code more semantic.

Last edited by PR Design; 10-05-2008 at 08:46 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #10 (permalink)  
Old 10-05-2008, 11:50 PM
LeadMagnet's Avatar
Mr. Tambourine Man
 
Join Date: Jun 2007
Location: Ireland
Posts: 1,085
Default

I don't see how that would do it... maybe i'm missing something?
You need to be able to affect a larger area than the hover target.
Ideally, if you could select the ancestor of the element you're hovering over, then that'd solve SOOOOO many problems, but i don't think you can.
__________________
Subtlety is my middle name... and first and last in case you didn't get the point.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
navigation cre8 General Web Design Forum 12 09-05-2008 04:58 PM
Nice Navigation James Jones Flash Forum 1 07-04-2008 06:05 PM
Help with navigation layout please -jordan- Graphic Design and Web Design Help 14 09-12-2007 05:28 PM
css navigation dannynosleeves CSS Forum 11 09-10-2007 08:57 PM
CSS Navigation Problems in Mozilla onyxlogix CSS Forum 15 24-08-2007 09:14 PM


All times are GMT. The time now is 09:56 AM.



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC5