I was able to change the Page title to show lowercase. It works when viewing in a computer. However, when I view on my iPhone, the Page titles in the menu bar still show all Capital letters. How do I also show lowercase letters when viewing on my phone, or when the browser is made smaller?
To make title lowercase Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#access a {
text-transform: inherit;
}
@media only screen and (max-width: 767px) {
#access select {
text-transform: inherit;
}
}