Rollover button link problem

Discussion in 'CSS' started by Konqurz, Jul 25, 2010.

  1. #1
    The button is supposed to change background colors and text color on hover/rollover but only the background color changes...:confused: Basically the <a> tag text does not change color.

    Heres the HTML for the menu:
    
    <ul id="menu">
                    <li><a href="">Home</a></li>
                    <li><a href="">About</a></li>
                    <li><a href="">Blog</a></li>
    </ul>
    
    HTML:
    and here is the CSS:

    
    ul#menu li {
    	display:inline;
    	background-color:#6a6a6a;
    	padding:5px;
    	margin-right:5px;
    }
    
    ul#menu a {
    	text-decoration:none;
    	color:#000000;
    	font-family:Arial, Helvetica, sans-serif;
    	font-weight:bold;
    	font-size:18px;
    }
    
    ul#menu li:hover{
    	background-color:#242424;
    	a:color:#C03;
    }
    
    Code (markup):
    I was just wondering if someone could help me to figure out this problem.

    Thanks,
    Konqurz
     
    Konqurz, Jul 25, 2010 IP
  2. obehi

    obehi Member

    Messages:
    62
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    43
    #2
    This is wrong:

    This works, probably:
    ul#menu a:hover, {
    a:color:#C03;
    }

    ul#menu li:hover{
    background-color:#242424;
    }

    But the li:hover doesnt work in all versions off explorer.
     
    obehi, Jul 25, 2010 IP
  3. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #3
    How about this?
    
    #menu {
    	list-style: none;
    }
    
    #menu li {
    	display: inline;
    	margin-right:5px;
    }
    
    #menu li a {
    	background-color:#6a6a6a;
    	text-decoration:none;
    	color:#000000;
    	font-family:Arial, Helvetica, sans-serif;
    	font-weight:bold;
    	font-size:18px;
    	padding:5px;
    }
    
    #menu li a:hover{
    	background-color:#242424;
    	color:#C03;
    }
    
    Code (markup):
     
    Cash Nebula, Jul 25, 2010 IP
  4. Konqurz

    Konqurz Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Sweet thank you Cash Nebula works perfectly :) Now I see what I was doing wrong.
     
    Konqurz, Jul 25, 2010 IP