Question: Remove Uppercase Letters In Topic Title

Remove Uppercase Letters In Topic Title

Hello, When creating a new topic, the topic title is all in uppercase lettering. Is there a way to make it normal? Not in default uppercase letters. Regards

S

Steven

Asked

Hello,

When creating a new topic, the topic title is all in uppercase lettering. Is there a way to make it normal? Not in default uppercase letters.

Regards

  • MS

    Mian Saleem

    Answered

    Hello,

    You can edit the styles as you need. If you are not familiar with sass or gulp then the easiest solution would adding styles to header view file themes/default/views/header.php before </head> closing the head.

    <style>
    .content-box .content-box-middle h2, .content-box .content-box-middle2 h2 {
        text-transform: none;
    }
    </style>
    

    Thank you

  • Login to Reply