hosted by liquidweb


Go Back   Web Hosting Talk : Web Hosting Main Forums : Web Design and Content : Doing away with underlined links
Reply

Web Design and Content Subjects include, HTML, graphics, editors, CSS, Flash, graphics creation, placing of ads, ad serv companies, copyright, content and nearly anything else design related. Also talk about businesses that provide design services. If you link to your site, you must post in Web Site Reviews.
Forum Jump

Doing away with underlined links

Reply Post New Thread In Web Design and Content Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 04-25-2007, 03:57 AM
rodash rodash is offline
New Member
 
Join Date: Apr 2007
Posts: 1

Doing away with underlined links


In website design, how do you design pages so links aren't underlined in the browsers?

Reply With Quote


Sponsored Links
  #2  
Old 04-25-2007, 04:04 AM
ITHost-KoreyR ITHost-KoreyR is offline
Web Hosting Master
 
Join Date: Jan 2006
Location: Ontario, Canada
Posts: 956
if youre talking about navigation, create the image with the text as part of it.

I'll use an example from our site: http://www.ithost.ca/images/intec_adv.jpg looks like it has text, but if you make the image a link or path to somewhere on/off your site, your text wont highlight or underlin (because theres no text to begin with!)

Its late and I'm sure I could have done a better job explaining that, but I'm sure you know what I'm getting at

__________________
ITHost.ca - Domains, Shared & Reseller Hosting
99.99% Uptime guarantee // R1Soft // 30 day money back // Instant setup
Installatron One-Click Software Installer // cPanel/WHM // Free add-on features


Reply With Quote
  #3  
Old 04-25-2007, 05:01 AM
KiranHost KiranHost is offline
WHT Addict
 
Join Date: Mar 2007
Posts: 174
You can use the STYLE parameter. i.e.

<A STYLE="text-decoration:none" HREF="link.html">Home Page</A>

__________________
KiranHost, LLC - Shared and Reseller Web Hosting Solutions
99.9% Uptime, cPanel, Site Builder
Host Unlimited Sites, PHP, Java, and more...
Instant Setup, and NO OVERSELLING!

Reply With Quote
Sponsored Links
  #4  
Old 04-25-2007, 06:48 AM
siforek siforek is offline
Web Hosting Master
 
Join Date: Oct 2006
Location: Salt Lake City, UT
Posts: 825
Try using CSS. Place this between <head> and </head>
Code:
<style type="text/css">
<!--
a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}
-->
</style>
This will of course remove underline from all links on that page.
More information: http://www.google.com/search?hl=en&q...=Google+Search

__________________
| | Fiber Elephant | | Virtuozzo & Reseller Hosting
█ | Never oversold, always managed & on the SoftLayer network!
█ | Call us toll free 24/7! | 1-888-92-FIBER

Reply With Quote
  #5  
Old 04-25-2007, 07:00 AM
bear bear is offline
Community Leader
 
Join Date: Oct 2002
Location: cognito
Posts: 17,432
Quote:
Originally Posted by ITHost-Korey View Post
if youre talking about navigation, create the image with the text as part of it.
If you do this, make sure to specify the image with border="0" or it will show a default line around it.

As mentioned, CSS is your best bet. Bear in mind the user can override your choice, so it's not perfect. Besides, it may look better, but from a usability standpoint (not to mention accessibility) it's not a good idea to hide your links. Up to you, of course.

__________________
Have problems (don't we all)? Head over to the help desk
If at first you don't succeed, that's one data point.


Reply With Quote
  #6  
Old 04-25-2007, 01:30 PM
gocard gocard is offline
Junior Guru Wannabe
 
Join Date: Nov 2006
Posts: 35
I'd recommend the CSS approach (good for SEO, users can highlight the text), and I'd also recommend underlining on hover (or changing color, etc.), just so that there's some sort of user feedback that this is indeed a link (the automatic changing of the pointer on many browsers is too subtle in my opinion):

Code:
 <style type="text/css">
<!--
a:link, a:visited, a:active { text-decoration: none; }
a:hover { text-decoration: underline; }
-->
</style>
You're probably already aware of this, but the most important thing is that you keep it consistent. If you're underlining some links, but not others, the ones that aren't underlined are definitely going to get missed.

Reply With Quote
  #7  
Old 04-25-2007, 09:34 PM
siforek siforek is offline
Web Hosting Master
 
Join Date: Oct 2006
Location: Salt Lake City, UT
Posts: 825
Just know that you can do anything. CSS gives you an incredible amount of power over the look of your sites. Another suggestion, Make a separate style file(style.css) and attach it to your pages. This way you could make 1 modification to that file and it would change on your entire site rather than changing the head of each html document.

http://tizag.com & http://w3schools.com are very helpful design/development tutorial site. Anyone know of any others?

__________________
| | Fiber Elephant | | Virtuozzo & Reseller Hosting
█ | Never oversold, always managed & on the SoftLayer network!
█ | Call us toll free 24/7! | 1-888-92-FIBER

Reply With Quote
  #8  
Old 04-26-2007, 01:15 AM
DeMiNe0- DeMiNe0- is offline
Disabled
 
Join Date: Apr 2007
Posts: 11
I would freshen up in your CSS, it's a simple CSS function that can do this.

Reply With Quote
  #9  
Old 04-26-2007, 10:06 AM
bluedreamer bluedreamer is offline
Web Hosting Master
 
Join Date: Sep 2005
Location: Middle England
Posts: 918
Quote:
Originally Posted by bear View Post
Besides, it may look better, but from a usability standpoint (not to mention accessibility) it's not a good idea to hide your links. Up to you, of course.
Here here, people with visual impairments often cannot distinguish text links from plain text if the underline is not there. The default state for text links is having an underline - it's done for a purpose.

Reply With Quote
  #10  
Old 04-26-2007, 10:58 AM
crandall87 crandall87 is offline
WHT Addict
 
Join Date: Mar 2007
Location: Norfolk, UK
Posts: 134
Yes I agree the less obvious links should be underlined. They don't look too bad if you have them the same colour as your text.

__________________
WebGrafix Affordable Web Design

Reply With Quote
  #11  
Old 04-26-2007, 02:29 PM
siforek siforek is offline
Web Hosting Master
 
Join Date: Oct 2006
Location: Salt Lake City, UT
Posts: 825
Quote:
Originally Posted by crandall87 View Post
They don't look too bad if you have them the same colour as your text.
I'll usually lighten/darken the color just a bit & keep'm underlined for default links(part of an article or something). That way it's not jumping out at you to click it till you know why you'd want to.

Stay away from text effects/filters unless you already know, or have the time to make'm work in all browsers(css+javascript+css will do the trick).

__________________
| | Fiber Elephant | | Virtuozzo & Reseller Hosting
█ | Never oversold, always managed & on the SoftLayer network!
█ | Call us toll free 24/7! | 1-888-92-FIBER

Reply With Quote
  #12  
Old 04-26-2007, 06:09 PM
bluedreamer bluedreamer is offline
Web Hosting Master
 
Join Date: Sep 2005
Location: Middle England
Posts: 918
Quote:
Originally Posted by crandall87 View Post
They don't look too bad if you have them the same colour as your text.
I have to disagree with you big time. If you suffer from any type of colour blindness non underlined links that are the same or similar colour to plain text makes it impossible for you to see them. Colour blindness affects about 10% of males and up to 2% of females, add to that people with generally poor eyesight and you are effectively shutting out a lot of a sites visitors.

Reply With Quote
  #13  
Old 04-26-2007, 06:17 PM
crandall87 crandall87 is offline
WHT Addict
 
Join Date: Mar 2007
Location: Norfolk, UK
Posts: 134
I didn't mean in an accessibility way. I meant in terms of design links look good underlined in the same colour. Personally if my links are not underlined they are bold and a different colour or text links on a nav bar.

__________________
WebGrafix Affordable Web Design

Reply With Quote
  #14  
Old 04-26-2007, 06:17 PM
siforek siforek is offline
Web Hosting Master
 
Join Date: Oct 2006
Location: Salt Lake City, UT
Posts: 825
Quote:
Originally Posted by bluedreamer View Post
I have to disagree with you big time. If you suffer from any type of colour blindness non underlined links that are the same or similar colour to plain text makes it impossible for you to see them. Colour blindness affects about 10% of males and up to 2% of females, add to that people with generally poor eyesight and you are effectively shutting out a lot of a sites visitors.
Those figures are actually pretty close. It's details like that that can set you apart from other designers. But I think rodash's got the idea.

...12 replies just for removing underlines from link.. We must be bored. lol

__________________
| | Fiber Elephant | | Virtuozzo & Reseller Hosting
█ | Never oversold, always managed & on the SoftLayer network!
█ | Call us toll free 24/7! | 1-888-92-FIBER

Reply With Quote
  #15  
Old 04-26-2007, 08:20 PM
bluedreamer bluedreamer is offline
Web Hosting Master
 
Join Date: Sep 2005
Location: Middle England
Posts: 918
Quote:
Originally Posted by crandall87 View Post
I meant in terms of design links look good underlined in the same colour.
I know where you're coming from but even underlined/same colour is hard for some CB users, I should know I'm one of the 10%

Quote:
Originally Posted by skshost View Post
Those figures are actually pretty close.

...12 replies just for removing underlines from link.. We must be bored. lol
lol.. I know they're close I'm one who should know! Bored, hell yes but we have to talk s**t sometimes

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
Burgers, Binge TV Watching and Cloud Blog 2013-05-24 15:20:17
Media Temple Revamps Affiliate Program with Increased Commissions Web Hosting News 2013-02-07 09:00:22
Web Host ServerGenie Introduces Recurring Revenue Model for Partner Program Web Hosting News 2012-07-06 13:52:08
Google+ Business Pages – Implications for Search Marketing Blog 2012-01-25 09:58:46
Freemium and A/B Testing with Haroon Mokhtarzada of Webs Web Hosting News 2011-08-09 17:13:14


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

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 Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?