![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Hi all. I have a pretty low-level n00b question. :)
I'm using the Funky Circles theme, and I've set custom values for fonts, font sizes, etc using the wizard. What I can't figure out is how to change the appearance of the title, subject headers, and some module headings.
I can set the font, but there is a bit of code in the CSS that I can see if I view the pages source:
text-transform: uppercase;
I'd like to remove this wherever it occurs, because I dislike the look of the all caps titles, but I can't figure out how to get in there and tinker with it.
Thanks for your help. I've been digging around for hours trying to figure this one out!
I'm using the Funky Circles theme, and I've set custom values for fonts, font sizes, etc using the wizard. What I can't figure out is how to change the appearance of the title, subject headers, and some module headings.
I can set the font, but there is a bit of code in the CSS that I can see if I view the pages source:
text-transform: uppercase;
I'd like to remove this wherever it occurs, because I dislike the look of the all caps titles, but I can't figure out how to get in there and tinker with it.
Thanks for your help. I've been digging around for hours trying to figure this one out!
no subject
Date: 2009-12-31 03:11 pm (UTC)#header h1
and.module-list-item
, you put in the embedded css box linked above:#header h1 {text-transform: none;}
.module-list-item {text-transform: none;}
Let me know if you need clearer instructions than that :o)
no subject
Date: 2009-12-31 03:18 pm (UTC)Is there a way to use that custom css to overwrite all cases of text-transform: uppercase, or do I need to hunt down all occurrences and add that to custom css?
no subject
Date: 2009-12-31 03:24 pm (UTC)* {text-transform: none;}
But I'm not sure it'll work. If you have to set them individually, you can short-hand a little bit (I don't know why I told you otherwise above, doh):
#header h1, .module-list-item {text-transform: none;}
no subject
Date: 2009-12-31 03:38 pm (UTC)Have a great new year!
no subject
Date: 2009-12-31 03:39 pm (UTC)no subject
Date: 2009-12-31 03:29 pm (UTC)* {
text-transform: none !important;
font-variant: normal !important;
}
It worked for me.
no subject
Date: 2009-12-31 03:37 pm (UTC)Very much appreciate your help! I love the style - it looks great & it suits me. :)
no subject
Date: 2009-12-31 03:39 pm (UTC)