• Resolved trideit

    (@trideit)


    When you go to this link it applies the coupon code but there is a lot of white space on the top of the page making it hard to read the coupon message. Any thoughts here?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Pablo Pacheco

    (@karzin)

    Hello @trideit ,

    By default, your theme seems to be adding an white space at the top of some pages. For example, take a look at this page:
    https://trideit.com/shop/

    There will be a message “No products were found matching your selection.” with a lot of white space at the top. This is due to this CSS created by your own theme or some other plugin:

    body:not(.et-tb) #main-content .container, body:not(.et-tb-has-header) #main-content .container {
        padding-top: 58px;
    }

    You can fix it by adding this to your Customizer > additional CSS:
    #main-content .container{ padding-top:0 !important }

    However I don’t know if it could mess with some other pages. You could give it a try though.

    Besides that, it seems your theme is not handling the notices from WooCommerce appropriately as well. You could try this to fix it:

    .woocommerce-notices-wrapper > * {
        z-index:99;
        margin-bottom: 57px;
    }
    

    Let me know if it helps ??

    Plugin Author Algoritmika

    (@algoritmika)

    I’m going to mark this thread as “resolved” for now, hope that’s ok. Please let me know if there are still any questions/issues.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘White Space Above Coupon Code’ is closed to new replies.