T
Asked
Hi, what file would i edit to remove the CAP letters that are in the title of each thread. Just want regular letters to show not caps. Thanks
- MSAnsweredHello,
You can modify the sass files as you need. If you don't have knowledge of sass, then you can try add the following before `</head>` in the `themes/default/views/header.php`
```
<style>
.break-words {
text-transform: none;
}
<style>
```
Thank you - TAnsweredOk thanks.
- Login to Reply