Rollover color

Discussion in 'TemplateCodes' started by Dragline, Mar 8, 2011.

  1. Dragline Customer

    Im using the sigma template. Where would I find the code for the link rollover color?
  2. seymourjames All Hands On Deck

    In each template folder you are using there is a css folder with a style sheet in it called style.css . You change the color on the hover. It will depend upon what type of link though (sidebar etc). Here is the general pice of code for links in the style.css file.

    HTML:
    	a {
        	color:#9d9d9d;
        	text-decoration:none;
    	}
    	a:active {
    		outline:none;
    	}
    	a:link,
    	a:visited,
    	a:active {
    		color:#9d9d9d;
    	}
    	a:hover {
    		color:#000;
    		background: transparent;
    		text-decoration:none;
    	}
    
  3. Dragline Customer

    Thanks for the reply. I found the code for the rollover on the accordion menu. Still trying to locate the rollover color for the top navbar though. It should be in the same file, right?
  4. seymourjames All Hands On Deck

    NO - superfish2.css

    You need to get a copy of the free Web developer plugin for Firefox. You can use this tool to highlight (outline current element) the css and many other things on the page.
  5. Dragline Customer

    Got it!!! Thanks for the help!

Share This Page