| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
|
|
|
|
#2 (permalink) |
|
Dr. Lucien Sanchez
Join Date: Mar 2003
Location: UK
Posts: 5,625
|
Not sure exactly what you want - the code for changing the background, or for changing the link text, or image rollovers? If you want to learn about creating css menus, this may help you: |
|
|
|
#5 (permalink) |
|
Part of the 3 out of 4
Join Date: Feb 2003
Location: cheshire
Posts: 2,081
|
[code:1:41e9f4f51a]Mind you there is some crap in there so i just dr the code try this..... <html> <head> <title>Untitled Document</title> <style type="text/css"> <!-- div.menu a { width:125px; border:1px solid #333333; display: block; color: #333333; background: #ffffff; text-decoration:none; font-size:11px; line-height:16px; font-family: Tahoma, verdana, sans-serif; text-align: center; } div.menu a:link { color: #333333; background: #cccc99; } div.menu a:active { color: #000000; background: #cccc99; } div.menu a:visited { color: #333333; background: #cccc99; } div.menu a:hover { color: #eeeeee; background: #333333; border:1px solid #000000; } } --> </style> </head> <body> <div class="menu"> <table> <tr> <td><a href="#"> Link 1</a></td> </tr> <tr> <td><a href="#"> Link 2</a></td> </tr> <tr> <td><a href="#"> Link 3</a></td> </tr> <tr> <td><a href="#"> Link 4</a></td> </tr> <tr> <td><a href="#"> Link 5</a></td> </tr> </table> </div> </body> </html>[/code:1:41e9f4f51a] Jase
|
|
![]() |