Tagline not all caps

Support Area Forums Foundation Tagline not all caps

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: http://www.dandeliontestingsites.com/3MM/
  • Author
    Posts
  • #38120
    Dandelion222
    Participant

    Hello,

    I used some code from another forum questions to try to edit my tagline so that it doesn’t appear in all caps. I changed the text-transform to none, then to capitalize, then to capitalize !important! but still no change.

    The only thing we want to change is to make that tagline not all caps. That it should be each words capitalized.

    #tagline p {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    text-transform: capitalize !important;
    }

    I’m stuck!

    #38134
    Bill Robbins
    Moderator

    On the home page, the tagline is a h2 tag while on the inside pages it is a p. So to hit both of those you would need to do something like this:

    
    #tagline h2,
    #tagline p {
    	font-size: 30px;
    	margin-bottom: 0;
    	font-weight: bold;
    	font-style: italic;
    	line-height: 1.2;
    	text-transform: capitalize !important;
    }
    

    See if that doesn’t do the trick for you.

    Bill

    #38142
    Dandelion222
    Participant

    That does it. Thank you!

    #38143
    Bill Robbins
    Moderator

    Happy to help out 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Tagline not all caps’ is closed to new replies.