Category names in upper case

Guides & Snippets for phpBB3.
Try the Snippets here and share Your own Snippets
User avatar
Post Bot Online
Supporter
Supporter
Posts: 44
Joined: 04 Mar 2010, 18:53
Local time: Saturday 20:41
Last active: Online now

Category names in upper case

Post by Post Bot »

Category names in upper case
Written by djs596

To stop this and have it displayed as you typed it in (in the ACP):

Prosilver

Open styles/{YOUR_STYLE}/theme/content.css
Find:

Code: Select all

li.header dt, li.header dd {
In that block of css, find:

Code: Select all

text-transform: uppercase;
Replace with:

Code: Select all

/* text-transform: uppercase; */
Then go to ACP and purge cache, and theme cache, then refresh your browser.

The text is too small?

If you find that the text is too small, in the same block of css in content.css:

Find:

Code: Select all

font-size: 1em;
Replace with:

Code: Select all

font-size: 1.2em;
Of course the em number can be changed to produce a different font size.

If you do this, refresh the cache again.