Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #47967

    This is my website: horriblehomemaker.com

    1. I was able to change the font color and the menu bar color. But how can I get rid of the hover background color? Can I change the hover to something else like underline or bold?

    2. How can I change the menu font?

    3. Is there way to get rid of that grey background and make the entire center have a white background?

    Thank you. I’m new to this.

    #48012
    Sakin
    Keymaster

    @horriblehomemaker:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus {
    	background: none transparent;
    	font-weight: bold;
    	text-decoration: underline;
    }

    2. Which font are you trying to change to. If that is web fonts then you can just add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu  {
        font-family: "Helvetica Neue", Helvetica, Arial;
    }

    3. Yes, just add the following css in “Appearance => Theme Options => Custom CSS” box.

    #main {
        background-color: #fff;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How to change menu hover and font’ is closed to new replies.