Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1336902

    Hi there,

    I have whitespace between the product image and the description. I wonder where is this coming from?
    I didn’t actually make any CSS settings that could be related to this.

    Would you like to take a look?

    best regards,
    Alex

    #1336953

    Hi Alex,

    Please try the following in Quick CSS under Enfold->General Styling:

    .single-product div.product .woocommerce-tabs {
        padding: 0;
    }

    Best regards,
    Rikard

    #1336990

    Hi Rikard,

    thanks for your answer. With this code, the whitespacer is still there.

    Best regards,
    Alex

    #1336996

    I added code:

    .single .woocommerce-tabs {
        position: relative;
        top: -100px;
    }

    This works. I don’t know if this is the best solution, but it works.

    Best regards,
    Alex

    #1337037

    Hi,

    Thank you for the update.

    Yes, that css code should work. The space was created because of the declared padding in this css code.

    #top div.product .woocommerce-tabs {
        clear: both;
        padding: 50px 0 0 0;
        margin: 0 0 30px 0;
    }
    
    .single-product-main-image {
        width: 33%;
        float: left;
        margin-right: 50px;
        overflow: hidden;
        padding-bottom: 50px;
    }
    

    You can keep your custom css code modification, or override the css above and adjust the padding.

    Best regards,
    Ismael

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