[Resolved] Column Padding and Wrapper Margin

Home Forums Support [Resolved] Column Padding and Wrapper Margin

Home Forums Support Column Padding and Wrapper Margin

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1348798
    Maria

    There is some left padding on gb-grid-column and left margin on gb-grid-wrapper that’s affecting my text causing the text to be slightly off-center. I’ve spent hours trying to remove the padding and margin but no success. Hoping you can help. Take a look at the Call Now clickable link on my test page.

    I’ve got Container > Grid > Container > Custom html

    #1349165
    David
    Staff
    Customer Support

    Hi there,

    add box-sizing: border-box; to your call button CSS – see below:

    a.callbtn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1.25em;
        font-size: 1em;
        font-weight: 500;
        color: #fff;
        background-color: #7daced;
        box-sizing: border-box; /* Add box-sizing */
    }
    #1349256
    Maria

    Perfect. Thanks so much.

    #1349312
    David
    Staff
    Customer Support

    You’re welcome

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