Site logo

[Support request] Make the Font Bigger

Home Forums Support [Support request] Make the Font Bigger

Home Forums Support Make the Font Bigger

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

    Hi

    I’d like to make the font of the text below bigger, but I don’t know how to do it in a code like this. Can you tell me what I need to add in this line of code to make the font bigger?

    <center><a href="site.com" rel="noopener nofollow" target="_blank"><strong>Click Here to Download </strong></a></center>

    #2425427
    David
    Staff
    Customer Support

    Hi there,

    i would use this HTML:

    
    <a class="my-custom-link" href="site.com" rel="noopener nofollow" target="_blank">Click Here to Download</a>
    
    
    This adds the <code>my-custom-link</code> CSS Class to it, you can change that for something more appropriate if you need.
    
    Then add some CSS to your site:
    
    

    .my-custom-link {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    }`

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.