Get rid of borders

Home Forums Business Club Pro Get rid of borders

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #2302
    Anonymous
    Inactive

    I am trying to get rid of the raised shadow effect around the content.

    For example, if you go here https://tizzime.com/blog you will see that there you will see that the main content and the content on the sidebar is all enclosed in what looks like a raised piece of the page. I like this look, but I want to see how everything would look just being free without the shadow raising.

    Thanks

    #2303
    Anonymous
    Inactive

    To clarify, I am looking to just have a white background without the shadows.

    #2456
    Anonymous
    Inactive

    Hi guys, did you receive the previous posts? It’s been about 2 1/2 weeks. Thanks.

    #2773
    Axle Support
    Moderator

    Hello @belton

    Sorry that we have missed your queries, because of the notification issue.

    Here is a CSS fixing for you just go to Customizer -> Additional CSS and paste the following css to get ride of shadow.

    #primary .site-main article {
        box-shadow: none !important;
    }
    
    .sidebar .widget {
        box-shadow: none !important;
    }

    Regards
    Support Team

    #3795
    Anonymous
    Inactive

    This worked great. But, it didn’t get rid of the shadows on my WooCommerce ‘SHOP’ Page.

    #3800
    Axle Support
    Moderator

    Hi,

    Here you can just add this CSS on your Customizer -> Additional CSS section

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        box-shadow: none !important;
        background: none !important;
    }

    If you just want to remove box shadow use.

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        box-shadow: none !important;
    }

    Hope this will solve your problem.

    Regards
    Support Team

    #3806
    Anonymous
    Inactive

    HI,

    These did not work for me.

    #3867
    Anonymous
    Inactive

    The sidebar doesn’t have the shadow but the main content area with the products still does.

    #4248
    Axle Support
    Moderator

    Hi @belton

    Please use this CSS to hide box shadow at Woo-Commerce pages.

    .woocommerce div#primary #main {
        box-shadow: none;
    }

    Please let us know if you need further help.

    Thank you.

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