Dump and Stupid Designers Hyperlinks
This time i am discussing major mistake of dump and stupid designers. I have found lot designers leave hyperlinks with default styles and attributes which have blue color with underline. Let me tell you this is not good approach to leave hyperlinks as default is. In current era where we are working on Web 2.0 we can not afford basic mistakes in website designing. If you Google some stupid mistakes of designers then you will know hyperlinks are major mistakes from all of them.
Just informing, you can use CSS to change the appearance and behavior of hyperlinks. CSS uses the following states to determine how hyperlinks look and behave:
- A
- A:link
- A:visited
- A:hover
- A:active
Here’s an example of the code that you might insert into a css style sheet to achieve the required effect.
A {font-family:Arial,serif; font-size:large}
A:link {color:blue;}
A:visited {color: #660066;}
A:hover {text-decoration: none; color: #ff9900;
font-weight:bold;}
A:active {color: red;text-decoration: none}
Kindly note that the A:hover must be placed after the A:link and A:visited rules, since otherwise the cascading rules will hide the effect of the A:hover rule. Similarly, because A:active is placed after A:hover, the active color (red) will apply when the user both activates and hovers over the A element.
Hyperlinks with no underline
A:link { text-decoration: none }
It can confuse your users if your hyperlinks aren’t underlined. A more usable solution would be only to apply this behaviour to hyperlinks only when users hover over them.
Text rollovers
A:hover { text-decoration: none }
Use the A:hover selector.
Cursor effects
A:hover { cursor:help }
Try it yourself, you will like it…
Just type following code in your style sheet
<!--
A {
font-family:Georgia, Times, serif;
font-size:large;
cursor: auto
}
A:link {
color:blue;
}
A:visited {
color: #660066;
}
A:hover {
text-decoration: none;
color: #ff9900;
font-weight:bold;
}
A:active {
color: #ff0000;
text-decoration: none;
}
-->
Waqar Hussain
a project management professional and blogger who write about project management and entrepreneurship in Pakistan
Website - Twitter - Facebook - More Posts
One Response to Dump and Stupid Designers Hyperlinks
Leave a Reply Cancel reply
Join the mailing lists
Recent Stories
- Motivate your employees for more sucess
- Why we Pakistanis reach late at work?
- Why Pakistani entrepreneurs wait till disaster for fixing their business?
- Learn to say “NO” to your bosses
- Time management is the key to efficiency
- De-Variables a new entrepreneur from Pakistan
- Importance of Team in Project
- Workshop on “Arena Multimedia Specialist Pro”
- Why Ecommerce is essential for business in Pakistan?
- Why good feasibility report is required?
Facebook Fan Page
Twitter Feeds
- Innovation Pakistan looking for bloggers! Message me 2 hrs ago
- Hello all! Morning! Hows everyone at twitter? 4 hrs ago
- Any one have an idea about ptcl EVO 3.1 mbps service in North Karachi..... 2 days ago
- Yes! We are live with Oracle EBS R12 Supply Chain and Financial Modules! We seem junior & inexperience, but yet we have done GURU's work! 2 days ago
- I am not tweeting and it does not mean that I do not exists! :P 1 week ago
- Hello!!!!! No twitter for this month! no no no I am not protesting for #Aafia :p Stuck at office for work! :S 2 weeks ago
- RIP Arfa karim! We proud on you! 3 weeks ago
- RIP! Arfa karim! A little legend of Pakistan! We proud on u! 3 weeks ago
- I do not know that how senior resources react with finger points! Why they are not true! 3 weeks ago
- Motivate your employees for more sucess http://t.co/88894s09 3 weeks ago
- More updates...
Posting tweet...













yees, i found lot these issues in many local designers. They should consider this stuff before releasing website over the internet. After all its about business impression.