• All the text in my body text is uppercase. I’ve tried changing the editor by deleting the “text-transform:uppercase;” but that didn’t work.
    https://www.protectivefilmsinc.com/wordpress/

    body{
    background: #22242c;
    color: #676c7a;
    font: 10px/18px Arial, Helvetica, sans-serif;
    text-transform:uppercase;
    word-spacing:-1px;
    position:relative;

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    We don’t actually support that theme, but.. Okay, just this once:

    #main {
     text-transform: none;
    }

    Unlucky Christine ??

    I would do a search of your styles.css for all instances of the word uppercase.

    I can see it here:

    #main {
    	background: url(images/body-tail.gif) 0 0 repeat-x #2d303a;
    	font: 10px/18px Arial, Helvetica, sans-serif;
    	text-transform:uppercase;
    }

    add the below line of ‘text-transform’ into normalize.css on line 132.

    p {
    margin: 0 0 1.5em;
    padding: 0;
    text-transform: none;
    }

    Thread Starter cgsrfr

    (@cgsrfr)

    Changing the text-transform: none, worked.

    Thank you very much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘text all uppercase need help changing’ is closed to new replies.