Adelle theme – Upper & Lowercase
-
I am using the Adelle theme and I would like to be able to have the header in upper and lowercase, however at the moment I can only use upper.
Thanks
Natalie
The blog I need help with is: (visible only to logged in users)
-
Hi! In the “Site Header” section of your css, remove “text-transform: uppercase” from the following class definition:
.site-title { font-size: 48px; font-size: 4.8rem; font-weight: 400; line-height: 1.2; text-transform: uppercase; } -
In order to make that change, you’ll first need the custom design upgrade. Even if you have that, I’m afraid @abreujamil’s suggestion won’t work because you don’t have access to the original CSS file. But you can achieve the same goal by going to customize>css and then pasting the code below into the pop-up window.
Your site title is currently all lowercase so I’m not sure if you want to change it or your menu items which are all uppercase so I’m providing the code for both:
Site title:
.site-title { text-transform: none !important; }Menu items
.navigation-main a{ text-transform: none !important; } -
- The topic ‘Adelle theme – Upper & Lowercase’ is closed to new replies.