• Resolved sboyb

    (@sboyb)


    I’m running the responsive parent themehttps://ww.wp.xz.cn/themes/responsive/ with the woocommerce plugin and a child theme. I was able to remove the sidebar on all the pages by removing the widgets except the “shop” and “Product” pages. I’ve removed all the widgets, chosen the “Full Width Page, No Sidebar” option in the edit page screen but I can’t get rid of “In Archive” on the side bar. How do I remove the sidebar and expand the main content to fill in the empty space? My website is oxygenrepairpro.com. Any help would be greatly appreciated!

Viewing 1 replies (of 1 total)
  • Theme Author CyberChimps

    (@cyberchimps)

    Hi,

    Sorry it has taken awhile to get back to you.

    I checked your website and could see blank space on the right side of Shop page and Individual product pages. This can be removed using custom CSS. You can add the below CSS in your child theme’s style.css file or under Appearance > Customize > CSS Styles > Custom CSS Styles

    For shop page:

    
    .post-type-archive-product #content-woocommerce.col-620
    {
    	width:100%;
    }
    

    For single product pages:

    
    .single-product #content-woocommerce.col-620
    {
    	width:100%;
    }
    
Viewing 1 replies (of 1 total)

The topic ‘Remove side bar’ is closed to new replies.