Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28394

    Hello all,

    Thanks as always for your help. I had a quick question in regards to text boxes. What type of css can you use to adjust the font size of the Heading sizes? I am using Heading 1 and wanted to make it much larger.

    I currently have:

    <h1 style=”text-align: center;”><span style=”color: #ffffff;”>MY TEXT HERE</span></h1>

    Appreciate your expertise!

    Best,

    Jonathan

    #137416

    Hey,

    You can add a unique selector to the h1 tag. Something like this:

    <h1 class="awesome" style="text-align: center;">MY TEXT HERE</h1>

    You can then style it on your custom.css or Quick CSS:

    h1.awesome {
    font-size: 20px !important;
    color: #ffffff !important;
    }

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Text Block Font css’ is closed to new replies.