ציטוט:
נכתב במקור על ידי miniature
HTML קוד:
a:hover{background:#000000;}
שנה את הצבע למה שאתה רוצה שישתנה.
|
אם היית נכנס לאתר ורואה - היית מבין שמדובר בכלל ברשימות (li) ולא סתם בקישור רגיל.
בכל מקרה, אם אתה רוצה כמו שם תגדיר רשימה (li) ותעשה משהו בסגנון כמו שהם עשו:
PHP קוד:
#menu ul
{
background: transparent url('menuoff.png') top left repeat-x;
height: 29px;
text-align: right;
}
#menu ul li
{
list-style: none;
display: inline;
text-align: right;
}
#menu ul li a:link, #menu ul li a:active, #menu ul li a:visited
{
color: #009500;
font-size: 1em;
background: transparent url('menuoff.png') center left repeat-x;
font-family: 'lucida grande', arial, sans-serif;
font-weight: bold;
text-decoration: none;
}
#menu ul li a:hover
{
background: transparent url('menuon.png') center left repeat-x;
color: #FDFDFD;
}