Webmaster/SEO News


Users Viewing This Thread
 1 Guest(s)
amatorbalikci.net

Post Reply  Post Thread 
Help! Navigation Links - I don't want it underlined!
Author Message
colin
Senior Member
****


Posts: 251
Group: Registered
Joined: Aug 2007
Status: Offline
Reputation: 0

Country:
Post: #1
Help! Navigation Links - I don't want it underlined!

Please tell me how to add my mavigation links without them being underlined or in blue - I can only seem to turn off the underline & blue if I apply it to the entire page. I only want the navigation links to be without the blue or underlined.

Many Thanks!

09-15-2007 08:16 AM
Find all posts by this user Quote this message in a reply
smacker
Member
***


Posts: 234
Group: Registered
Joined: Sep 2007
Status: Offline
Reputation: 0

Country:
Post: #2
RE: Help! Navigation Links - I don't want it underlined!

If you give the navigation link container a unique ID,

Code:


you can make the code you're using that applies to the whole page only apply to that container, with a minor change.

Code:

ul#navigation a {

text-decoration: none;

color: #654321;

}

09-15-2007 11:57 AM
Find all posts by this user Quote this message in a reply
Dhanraj
Junior Member
**


Posts: 50
Group: Registered
Joined: Nov 2007
Status: Offline
Reputation: 0

Country:
Post: #3
RE: Help! Navigation Links - I don't want it underlined!

There is a java script to do that.it is simple

11-17-2007 07:11 PM
Find all posts by this user Quote this message in a reply
bunty
Junior Member
**


Posts: 14
Group: Registered
Joined: Apr 2010
Status: Offline
Reputation: 0

Country:
Post: #4
RE: Help! Navigation Links - I don't want it underlined!

Hi guys

Who can use your website? People with limited mobility may have a hard time controlling a mouse to click on links, and tabbing through menus can be slow going. The W3C introduced the accesskey attribute to enable users to select the appropriate key on their keyboards and navigate to a particular link.
Accesskeys can also be useful to people who have no trouble controlling the mouse and clicking on links. Experienced users of desktop applications learn to use keyboard short-cuts to save files, open new windows, or copy and paste text. Assigning accesskeys to menu items adds “Hot-Key” functions to a website, letting frequent users spend less time less time moving and clicking the mouse. This solution, however, has been largely underused because it almost always fails due to two major flaws.
The first problem is that visitors to your website have no way of knowing that you’ve assigned accesskey attributes to your linked elements. Even if they suspect you have, they would have to guess which accesskeys assignments you’ve created. In this article, we’ll look at how to solve this problem, enabling you to clearly but unobtrusively let your visitors know which accesskeys correspond with the links on a page.

Thanks for all friends

04-20-2010 05:18 PM
Find all posts by this user Quote this message in a reply
cools4u
Junior Member
**


Posts: 29
Group: Registered
Joined: Aug 2008
Status: Offline
Reputation: 0

Country:
Post: #5
RE: Help! Navigation Links - I don't want it underlined!

if you do not want all of the navigation links on your website to be underlined and also want to change the color from blue to some other color then create a class so that use can use it more than once on a single web page and then set the property as :

for eg:
In css file:

.navlink a:link
{
text-decoration: none;
color:#436570;
}


this will create a more global property easy to handle and set for your whole website.

This post was last modified: 05-11-2010 09:00 PM by cools4u.

05-11-2010 08:55 PM
Find all posts by this user Quote this message in a reply
Post Reply  Post Thread 

View a Printable Version
Send this Thread to a Friend
Subscribe to this Thread | Add Thread to Favorites

Forum Jump: