Menu navigation font?

Discussion in 'Figero WordPress Theme' started by efcom, Jan 23, 2013.

Thread Status:
Not open for further replies.
  1. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    Hi,

    where can I change the font which is used for the menu navigation next to the logo?

    And how can I disable the line between menu entries in the navigation?


    Thx.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Font Replace
    Cufon.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu li a {
    font-family: symbol;
    }
    Inplace of "symbol" put your font type.


    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    #menu .ddsmoothmenu li {
    background: none;
    }

    This will solve your issue.
     
    efcom likes this.
  3. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    Thank you very much. It works :)

    I have an other question:
    How can I change the color of hyperlinks in texts? I want to change it global so that every new hyperlink is in the defined color.
     
  4. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,
    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    a {
    color:your color value !important;
    }
    This will Change the color of all the hyperlink.

    Thanks.
     
  5. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    OK, that works, but now my navigation menu is also in the defined color.

    I think it would work like this:
    #articles a {
    color:#016E49 !important;
    }

    #articel is an example. What do I have to write instead of articel?

    the URL is: http://homepage2013.efcom.de
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please explain your problem with the help of screenshot, where you want to change the color of hyperlinks, so that we can give you the exact solution.
     
  7. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    For example in the "impressum" the term "Datenschutz" is a hyperlink to a page. Or even the email adresses are mailto links. I want these links colored green. But the links like the menu navigation shell be in the color they are at the moment.

    http://homepage2013.efcom.de
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .copyright a {
    color: green;
    }
    .content-wrapper a {
    color: green;
    }
     
    efcom likes this.
  9. efcom

    efcom New Member

    Joined:
    Jan 21, 2013
    Messages:
    16
    Likes Received:
    0
    Thank you ver much! This was exactly what i was looking for :)
     
Thread Status:
Not open for further replies.

Share This Page