• Hi..could anyone help me to increase the font on my tagline..I have tried several css codes in google and none worked for me……thanks

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @gracebraedon,

    I assume the text under your hero image is the tag line? I hope 😉

    Here’s the CSS for making that bigger.

    
    /* Make the tagline bigger. */
    .page-header-title.clr {
      font-size: 3.5rem; /* Change number (size) as needed.
    }
    
    

    Cheers!

    P.s. You previous code attempts might be correct, just in the wrong spot. Read how to add CSS to WordPress here.

    Thread Starter gracebraedon

    (@gracebraedon)

    Hi Mark..could you give me the css with just a number for the font size like 30 maybe ..without the */ symbol..?( im assuming i dont put this symbol in). Forgive my i am very new to all this. …thanks

    Hi @gracebraedon,

    Apologies for the type. I missed the closing comment */.

    Here’s the exact code with no comments.

    
    
    .page-header-title.clr {
      font-size: 3.5rem; 
    }
    
    

    The font-size CSS property needs a set of units. So, I can’t just give you a number. I’m using rem since it’s resposive. Feel free to change to any other valid CSS unit.

    I posted a live demo on Codepen where you can play around with any size/units that you want.

    Enjoy 🙂

    • This reply was modified 5 years, 8 months ago by mark l chaves. Reason: Typo
    Thread Starter gracebraedon

    (@gracebraedon)

    Wow Mark..you are awesome ..thanks so very much it worked and i bet i had tried 10 or so…

    Thread Starter gracebraedon

    (@gracebraedon)

    Mark can you tell me about codepen it looks cool… ive never heard of it

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Increasing font size in tagline’ is closed to new replies.