• Fiona Blinco

    (@southaussienomad)


    Hi,
    Is it possible to change the Menu items from uppercase to Sentance case. For example
    Home Images iVents About
    Rather than
    HOME IMAGES IVENTS ABOUT

    This is the site I am working on
    https://larsheldmann.com/

    Thank you. Fiona. South Australia.

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

    Please add the below line of css code in your theme style.css file:

    body .main-navigation li {
       text-transform: capitalize;
    }
    Theme Author Shaped Pixels

    (@shaped-pixels)

    Greetings from the west coast of Canada!

    With some custom CSS you can change it, but you will need a plugin for that, such as Simple Custom CSS.

    This is what you would put into your custom CSS:

    @media (min-width: 992px) {
    .main-navigation li {
        text-transform: none;
    }
    }

    To work with the responsiveness of the theme, we need to keep it in the @media query. Long story short, making it normal case (not uppercase) will affect the menu only when viewed on larger screens like a desktop monitor.

    NOTE: The reason why we would use a plugin for this, is so that any future theme updates that come along, you won’t lose your custom changes.

    Thread Starter Fiona Blinco

    (@southaussienomad)

    Thank you for quick reply. I’ll try this over the weekend.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sentance Case for Menu items’ is closed to new replies.