Change font in menu and some other questions

Discussion in 'Dzonia WordPress Theme' started by bronco67nl, Aug 16, 2013.

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

    bronco67nl New Member

    Joined:
    Jul 24, 2013
    Messages:
    12
    Likes Received:
    1
    Hey there InkTheme guys,

    I'm experiencing some troubles while I'm working on this website. Hope you can help me out...
    • How do I change the type family of the menu buttons? Want to change it from a sans serif to a serif font. If possible even a specific font type like for example Times New Roman.
    • All my menu items are written in capital. My client asked me to do so. But how do I change the Home button to capitals?
    • And what if I wanted 'Home' to change into an other language?
    • How can I translate words like 'search, read more, previous, next' etc. into my native language?
    • Finally: how can I change the color of a pull down menu?
    Website (still in progress!!) www.blosjz.nl/wordpress/

    Thanks guys.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu li a{
    font-family: symbol;
    }
    Inplace of "symbol" you can put your color or color code.
    This will change the font type of menu bar.

    2. Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu li a {
    text-transform: uppercase;
    }
    
    This will change the menu text in capital letter.

    3. Go to the Appearance > Menus Panel and put you text in place of "Home" as shown in the image given below.

    [​IMG]

    This will change the text of Home menu.

    4. To change the "Search" text,
    Go to the searchform.php file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]


    To change the "read more" text,
    Go to the front-page.php file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]


    To change the previous and next text,
    Go to the searchform.php file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]


    5. To change the color of drop down menu,
    paste the code given below in Custom CSS.
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu .ddsmoothmenu li ul {
    background: red;
    }
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited{
    color:white;
    }
    #menu .ddsmoothmenu li li a:hover{
    color: black;
    }
    Inplace of "red" ,"white" and "black", you can put your color or color code.
    This will solve your issue.
     
  3. bronco67nl

    bronco67nl New Member

    Joined:
    Jul 24, 2013
    Messages:
    12
    Likes Received:
    1
    Thanks so much! That was really helpfull.
     
Thread Status:
Not open for further replies.

Share This Page