Changing the title on the front page
-
Hi,
I need to make the title on my front page lower case. However, the default template only allows me to use all upper case letters. The caption below the title is lower case, but I want the title to be as well.
I would greatly appreciate any help on how to change this.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
If you have access to your CSS style-sheet, you can use this code;
text-transform:lowercase;
And remember to put this property at yourh1tag. -
Some CSS that’s a bit more specific will allow you to override just your site title, instead of all h1 tags. This should do the trick:
.site-title { text-transform: lowercase; }Let me know how it goes.
-
This worked great! However, I want to capitalize the first letter, and leave the rest lower case. Is there a specific code to do this?
-
Sure! First, capitalize it under Settings > General:
https://cleod9music.wordpress.com/wp-admin/options-general.php
Then, remove the code I gave you earlier and add this instead:
.site-title { text-transform: none; }That should give you this:
- The topic ‘Changing the title on the front page’ is closed to new replies.