Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Help regarding page links in nav menu
Old 11-04-2010, 05:44 AM Help regarding page links in nav menu
Average Talker

Posts: 15
Trades: 0
Hi,

First and foremost id just like to say hi, and im happy ive finally found such a active web design forum!

I have a question regarding my nav menu for a new website im doing if somebody would be kind enough to try and help me.

I have created a rope ladder type picture(attached) to use as the nav menu, with spaces between the rungs.
My question is, without using flash, how can i get the text/page links onto the rungs?

Thanks for your time
Andy
Attached Images
File Type: jpg mainnav.jpg (9.4 KB, 8 views)
CraftyPanda is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-04-2010, 05:47 AM Re: Help regarding page links in nav menu
lynxus's Avatar
Awesomeo-Maximo

Posts: 1,618
Location: UK
Trades: 1
Considering they are on a "slant" the only way i can think of is to put the text into the image and then use an imagemap over the top of each link.

Other than that, You can place div's above them with text inside. However getting the text to "slant" may be an issue.
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


lynxus is offline
Reply With Quote
View Public Profile Visit lynxus's homepage!
 
Old 11-04-2010, 06:02 AM Re: Help regarding page links in nav menu
Average Talker

Posts: 15
Trades: 0
Quote:
Originally Posted by lynxus View Post
Considering they are on a "slant" the only way i can think of is to put the text into the image and then use an imagemap over the top of each link.

Other than that, You can place div's above them with text inside. However getting the text to "slant" may be an issue.
Ah yes of course, If i set the rope ladder as the back ground images, and the split its container up into divs I could do it that way?

I didnt want the words on a slant anyway, so thats cool.

Ive never heard of imagemap before. How do I do this? What is it?

Thanks alot
CraftyPanda is offline
Reply With Quote
View Public Profile
 
Old 11-04-2010, 07:36 AM Re: Help regarding page links in nav menu
Mug
Skilled Talker

Posts: 78
Trades: 0
This tutorial will explain how to use image maps:
http://www.w3schools.com/tags/tryit....ryhtml_areamap

Or if you did want to lynxus said i.e place the text within sections/p elements and then position them with css. Depending on whether you wanted to support earlier versions of IE you could use something like:

#rungsContainer {
width: insert width of image;
height: insert height of image;
background: url(whatEverYourBackGroundImageIsCalled.jpg);
}

section {
width: insert width of rungs;
height: insert height of rungs;
padding: 10px 0 10px 0;
}

section p:nth-child(odd){
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(-45deg);
position: absolute;
}

section p:nth-child(even){
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
}
__________________
Mug

Please login or register to view this content. Registration is FREE

Last edited by Mug; 11-04-2010 at 07:53 AM..
Mug is offline
Reply With Quote
View Public Profile
 
Old 11-04-2010, 07:38 AM Re: Help regarding page links in nav menu
Average Talker

Posts: 15
Trades: 0
Quote:
Originally Posted by Mug View Post
This tutorial will explain how to use image maps:
http://www.w3schools.com/tags/tryit....ryhtml_areamap

Thanks Mug,

Much appreciated.
CraftyPanda is offline
Reply With Quote
View Public Profile
 
Old 11-04-2010, 06:02 PM Re: Help regarding page links in nav menu
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
You do NOT need a horrible, inaccessible image map!
You can use images of the menu that are slanted to match your 'rungs', but then use an image replacement method so that search engines and people using assistive technology can grab REAL TEXT of your menu - and you can do this with a plain old unordered list with css image rollovers if you want.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-09-2010, 09:27 AM Re: Help regarding page links in nav menu
Average Talker

Posts: 15
Trades: 0
Quote:
Originally Posted by LadynRed View Post
You do NOT need a horrible, inaccessible image map!
You can use images of the menu that are slanted to match your 'rungs', but then use an image replacement method so that search engines and people using assistive technology can grab REAL TEXT of your menu - and you can do this with a plain old unordered list with css image rollovers if you want.

I did something simlair to this in the end. The ladder became the background images, I spliced the text images up to match the background and used that imaged as the link, using text displacement for the real text.

Easy when you know how I guess :P
CraftyPanda is offline
Reply With Quote
View Public Profile
 
Old 11-10-2010, 02:29 AM Re: Help regarding page links in nav menu
Banned

Posts: 143
Name: maheshadodis
Location: USA
Trades: 0
Quote:
Originally Posted by CraftyPanda View Post
Hi,

First and foremost id just like to say hi, and im happy ive finally found such a active web design forum!

I have a question regarding my nav menu for a new website im doing if somebody would be kind enough to try and help me.

I have created a rope ladder type picture(attached) to use as the nav menu, with spaces between the rungs.
My question is, without using flash, how can i get the text/page links onto the rungs?

Thanks for your time
Andy
Hi,
it is very simple first you have to slice this image so that it fits correctly
i want to know will you use list to create nav menu i.e are u going to use only html css to create your navigation menu if answer is yes then

slice image as fallows

1)if width of your drop down menu is static then u can use image as a whole i mean one step of a ladder image is for one list item <li></li>
but it is good practice to slice image so that it extends ie. make it as 1px image give repeat in your css
2)give image as background to li that is done
if any query let me know
maheshadodis is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Help regarding page links in nav menu
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.92359 seconds with 13 queries