Menu only uppercase letter in the first word

Discussion in 'BlackBird WordPress Theme' started by matlars, Apr 9, 2015.

  1. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
    In the menu, each word begins with a capital letter, how to remove it?
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey, matlars!

    First, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu li a {
      text-transform: none;
    }
    Now, follow the screenshot given below.
    blackbird_replace_capital_letter_with_Small_letter_in_menu_items.png


    Thanks,
    Praveen
     
  3. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
    And for the mobile version?
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello matlars!

    It will work for mobile as well as desktop both.
    In case if it does not work, please modify the previously provided code with "text-transform: none !important;".

    Hope it will be helpful for you.

    Thanks,
    Praveen
     
  5. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello, matlars!

    I do apologize for the last reply.

    Please use the CSS code given below.
    Code:
    .it_mobile_menu li a {
      text-transform: none !important;
    }
    Hope it will resolve your issue.

    Thanks,
    Praveen
     

Share This Page