runningragged
Member
Posted 3 years ago #
I'm trying to shift from having a regular blogroll on my WP blog (thetalmudist.com) to displaying short RSS feeds of fellow bloggers instead; problem is the title for each feed is in CAPS, and I can't figure out how to change that - any suggestions would be very much appreciated!
Peace out,
RR
The following in your theme's style.css could cause this:
text-transform: uppercase;
There are several instances of this in your style.css. I'm not sure where you are having the problem with it, but getting rid of each instance one at a time and checking your blog (refresh your browser) should identify the problem one. Make a backup copy of your style.css before trying this.
runningragged
Member
Posted 3 years ago #
Thanks Iridiax,
I have found a about 10 'uppercase' entries in my style.css. Once I do find the right one and take it out, would I still be able to have some of the letters capitalized, like the first letter?
Best,
RR
Once I do find the right one and take it out, would I still be able to have some of the letters capitalized, like the first letter?
Yes. This bit of css just converts any bit of text to all uppercase. I never use this one because if I want something capitalized, I just do it myself.
runningragged
Member
Posted 3 years ago #
Cool, thanks a a lot iridiax