JenR
(@jennifer-roberts)
Can you post a link to your site? Hard (impossible) to help with CSS questions without looking at an actual page.
If you mean to change the case of the site logo link, use this:
#logo a {
text-transform: none;
}
If you mean to change the case for the post titles, add this to your custom CSS
.post-content .title,
.post-content .title a {
text-transform: none;
}
text-transform: none resets the title case to whatever you type.
You can also replace none with uppercase (all letters in uppercase), capitalize (capitalize only first letter of a word), lowercase (all letters in lowercase), etc.
More information about text-transform here: https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform
Thanks very much. I was referring to the site logo link, and it works great.
Do you know if there is a way to make some words in the site logo link bold, and other thin?
Thanks again