S
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
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
- MSAnsweredHello,
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.
```css
<style>
.content-box .content-box-middle h2, .content-box .content-box-middle2 h2 {
text-transform: none;
}
</style>
```
Thank you - Login to Reply