Go Back  Xtreme Visual Basic Talk > Other Languages > Web Programming > changing color values of link


Reply
 
Thread Tools Display Modes
  #1  
Old 07-13-2012, 08:58 AM
tilky tilky is offline
Newcomer
 
Join Date: Nov 2011
Posts: 21
Default changing color values of link


i want to have a link have a different background color and text color when the mouse is over it. See the following pictures. How would i go about doing this?
Attached Images
File Type: png after.PNG (721 Bytes, 9 views)
File Type: png before.PNG (649 Bytes, 9 views)
Reply With Quote
  #2  
Old 07-13-2012, 11:38 AM
starmanMike starmanMike is offline
Centurion
 
Join Date: Oct 2005
Location: near Norwich, UK
Posts: 174
Default

assuming this isn't a graphic, you just need to set the a: pseudoclasses in your CSS for the list <li> selector:
Code:
      a:link,a:visited
		{
		display:block;
		color:white;
		background-color:black;
		text-align:center;
		padding:4px;
		text-decoration:none;
		text-transform:uppercase;
		}
		a:hover,a:active
		{
		background-color:white;
                color:gray;
		}
for example. But personally I'm not sure that grey-on-white works. Maybe a darker grey?

Last edited by starmanMike; 07-13-2012 at 12:31 PM.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->