• Resolved mbanta45

    (@mbanta45)


    For some reason I can’t seem to change my Primary Menu items from All Caps to just an Initial Cap. I’ve double checked to be sure that they weren’t written in all caps in Customize and I have no clue how to change it.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    It seems the Menu items ALL Caps are coming from the stylesheet within the theme that is the reason when you are making any change in Wp-admin it doesn’t change.

    Now there are two ways to solve this, first one – either you open your theme style.css and edit line number #422 you will find one CSS which says text-transform : uppercase;
    just change it to text-transform : capitalize;

    Or second way is to add the additional CSS.

    From your Admin Dashboard
    Themes ? Customize ? Additional CSS

    and add below CSS

    .main-navigation a {
        text-transform: capitalize !important;
    }

    Hope this helps.

    Thanks

    Thread Starter mbanta45

    (@mbanta45)

    You my friend are an absolute lifesaver!!! Thank you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cannot change Menu items from all caps. Help?’ is closed to new replies.