sub menu shows capital instead of lower case

Discussion in 'ColorWay WordPress Theme' started by dirkjedj, Jan 14, 2013.

  1. dirkjedj

    dirkjedj Member

    Joined:
    Jan 10, 2013
    Messages:
    31
    Likes Received:
    0
    In the submenu I have a page which is called 'eCover Design'. Unfortunately however the submenu button says 'ECover Design'. It automatically makes the first letter a capital letter whilst in this particular case it should be a lower case letter.

    I would like to be the navigation buttons show the text 'as I write it'. How can I make this happen?
     
  2. 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:
    #menu .ddsmoothmenu li li a{
    text-transform:none;
    }
     
  3. dirkjedj

    dirkjedj Member

    Joined:
    Jan 10, 2013
    Messages:
    31
    Likes Received:
    0
    Thank you, it works! :)
     
  4. dirkjedj

    dirkjedj Member

    Joined:
    Jan 10, 2013
    Messages:
    31
    Likes Received:
    0
    Additional question:
    In the mobile version menu this menu item is still called 'ECover Design'. Can you give me the code for mobile too?
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    @media only screen and (max-width: 480px) {
      #menu .ddsmoothmenu li li a{
      text-transform:none;
      }
    }
    it will solve your issue.

    Thanks and Regards,
    Piyush
     
  6. dirkjedj

    dirkjedj Member

    Joined:
    Jan 10, 2013
    Messages:
    31
    Likes Received:
    0
    Unfortunately it doesn't work on all devices, Piyush.

    It works on my iPad but not on the iPhone. I've tried to enter it below the code Gourev gave me earlier and it didn't work and also tried to put it above that code. Didn't work either...

    Do you have another suggestion in which on both pc's and mobile devices the link says 'eCover Design'?
     
  7. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .it_mobile_menu li a {
      text-transform: none;}
     
    .mobile_nav {
      text-transform: none;}
     

Share This Page