• Resolved decameron2000

    (@diabolique65)


    The Woocommerce core plugin has problems with the Jarida theme templates. On this shop page, the sidebar is way below the rest of the content. Jarida documentation says nothing about this. This happens periodically when Jarida is updated. I can find no Woocommerce templates inside the theme folder itself. What am I missing?

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support RK a11n

    (@riaanknoetze)

    Hi there,

    When looking at the code being generated on that page, it seems that the developers of your theme need to tweak their CSS somewhat to allow the sidebar to show up side-by-side. This isn’t something that WooCommerce has any direct control over as it’s all theme-powered.

    For a temporary fix, you could try the following custom CSS in your WordPress settings under Appearance > Customize > Additional CSS:

    
    #main-content{	
      width:  74%;
      float: left;
    }
    

    Hope it helps.

    Thread Starter decameron2000

    (@diabolique65)

    Thanks so much for responding. Won’t that code effect everything else on the site, since the main-content class is used throughout? Is there any way to make it specific to just the WooCommerce pages?
    Thank you, again.

    Plugin Support John Coy a11n

    (@johndcoy)

    Automattic Happiness Engineer

    You can try adding the woocommerce class to it, like so:

    .woocommerce #main-content {
        width: 74%;
        float: left;
    }

    Hope that helps, but you may want to contact the theme developers to ensure this is the most effective way.

    Best,

    Thread Starter decameron2000

    (@diabolique65)

    That works brilliantly. Thank you so much!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Jarida template problems’ is closed to new replies.