Menu capital letter of each word

Discussion in 'BlackBird WordPress Theme' started by matlars, May 28, 2014.

  1. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
    How do you change so not all words in the top menu has a capital letter?
     
  2. Piyush

    Piyush Support Staff

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

    The code given below is responsible to change the first alphabet of each words of menu in capital letter.
    Code:
    #menu .ddsmoothmenu {
    text-transform: capitalize;
    } 
    If you want to remove the text transformation of menu then paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu .ddsmoothmenu {
    text-transform: none;
    } 
     

Share This Page