dudepet39
12-26-2004, 11:40 PM
Is that CSS or what is it? How do you make links where it highlights a boxed area? Not just the words themselves? How do you do it...thanks a lot! :)
|
View Full Version : How do you make links like on www.daydreamgraphics.com (the graphics links)? dudepet39 12-26-2004, 11:40 PM Is that CSS or what is it? How do you make links where it highlights a boxed area? Not just the words themselves? How do you do it...thanks a lot! :) wergo 12-27-2004, 12:42 AM It looks to me like they put it in a table and just change the table background color when you mouseOver the table. A simpler way is to just do it in css put between your <head> </head> tags: just replace the 6 x's with a 6 digit hexcode. <style type="text/css"> a:hover{background-color:#XXXXXX} </style> dudepet39 12-27-2004, 01:35 AM Thanks a lot wergo! It worked! :) |