• Resolved femke98

    (@femke98)


    Hello, is it possible to put widgets in sidebar from left side to the right side?
    I want sidebar on all pages on the same side.

    On shop page i have sidebar on the left and on the product page it is right. I don’t like that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @femke98,

    Thank you for your query.

    Please try adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    @media only screen and (min-width: 992px) {
      .woocommerce-shop.post-type-archive-product.woocommerce .widget-area {
        float: right;
      }
      .woocommerce-shop.post-type-archive-product.woocommerce .content-area {
        float: left;
        padding-left: 0;
        padding-right: 45px;
      }
    }

    Hope that helps.

    Regards,
    Kharis

    Thread Starter femke98

    (@femke98)

    Thanx, but it didn’t work.
    What works is:

    .content-area {
    float: right;
    }
    .widget-area {
    float:left;
    }

    The sidebar is now left and i like it!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebar same side’ is closed to new replies.