Home Forums WoodMart support forum Full Width

Full Width

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #63772

    duncdiddily
    Participant

    Hello

    Is there a way to get the product category page full width or to float the content right on the page?
    I am not needing the left sidebar for this page.
    https://www.choicesandmoreforyou.com/product-category/accessories/

    Thank you

    #63774

    Hello,

    The sidebars for the category is set globally and you cannot have left sidebar for one category and right sidebar for other.

    If you want to make full-width certain category it is possible to achieve via custom CSS.

    .term-accessories .sidebar-container{
    display:none;
    }
    
    .term-accessories.site-content{
    left:0;
    min-width:100%
    }

    If this code does not work please provide your site admin access.

    Best Regards

    #63784

    duncdiddily
    Participant

    I placed the css you provided but the page is not full width. Even put “!important” on the css.

    This is in “Global Custom CSS”

    The page I am needing the full width is https://www.choicesandmoreforyou.com/product-category/candles/

    I will put my credentials in the private content area.

    Thank you

    #63840

    Hello,

    Please try this one:

    .term-candles .shop-content-area{
       width:100%;
       left: auto;
    }
    .term-candles .sidebar-container {
       display:none;
    }

    Best Regards

    #63935

    duncdiddily
    Participant

    The Css works.

    Thank you!

    #63981

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Full Width’ is closed to new replies.