raanve: Tony Millionaire's Drinky Crow (Default)
raanve ([personal profile] raanve) wrote in [community profile] style_system2009-12-31 09:48 am

Question on text-transform setting in Funky Circles

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!
blnchflr: Remus/Ghost!Sirius (html)

[personal profile] blnchflr 2009-12-31 03:11 pm (UTC)(link)
You have to add custom css for the appropriate html. If e.g. you want to change #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)
blnchflr: Remus/Ghost!Sirius (Default)

[personal profile] blnchflr 2009-12-31 03:24 pm (UTC)(link)
You can try setting

* {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;}
blnchflr: Remus/Ghost!Sirius (Default)

[personal profile] blnchflr 2009-12-31 03:39 pm (UTC)(link)
Good thing a professional was on the spot :oD
ninetydegrees: Art: self-portrait (Default)

[personal profile] ninetydegrees 2009-12-31 03:29 pm (UTC)(link)
Hi Raanve, I'm glad you mostly like my style. :) To get rid of all forms of capitalization everywhere, you can try this:

* {
text-transform: none !important;
font-variant: normal !important;
}

It worked for me.
ninetydegrees: Art: floating cute creatures and hearts (cloud 9)

[personal profile] ninetydegrees 2009-12-31 03:39 pm (UTC)(link)
You're most welcome! Thanks for your kind words.