if it turns to uppercase automatically then there might be a css class set to text-transform:uppercase in your style.css.
Disable it and you will be able to do that.
Can you teach me how to do that? Because I am new to wordpress.
Thanks
please post the link to your site then i will be able to demonstrate to you.
Ok.
In your style.css located at:
http://www.careersupport365.com/wp-content/themes/celestial-lite/style.css
On line 526 you will see a css class on a element like this:
a {
color: #467FC2;
font-weight: 600;
letter-spacing: normal;
text-decoration: none;
text-transform: uppercase;
}
the last line you see above is the cause for uppercasing your text.comment it like below and you will be good to go
a {
color: #467FC2;
font-weight: 600;
letter-spacing: normal;
text-decoration: none;
/*text-transform: uppercase;*/
}
No problem…mate..cheers..:)..
Pls close the thread if problem resolved…cheers.:)..
Thanks wp-21 for helping out paulNivy…you’re making my job easier 🙂
The other option to disable the uppercase is to do it like this:
text-transformation: normal;
or to delete the line. I should also mention to paulNivy that making changes to the core files of a theme should be done using a child theme so that whenever an update comes for the theme, the modifications (changes) won’t be lost.
Still, thanks for the help 🙂
Cheers mate.:)..Yeah changes should be done to child theme…forgot to mention that…