Viewing 2 replies - 16 through 17 (of 17 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    However it may be the case that the WooCommerce stylesheet is loaded after your Child Theme stylesheet, and so you’ll need to use more specific CSS selectors to override that style.
    E.g.:

    body.woocommerce div.product div.images img,
    body.woocommerce #content div.product div.images img,
    body.woocommerce-page div.product div.images img,
    body.woocommerce-page #content div.product div.images img {
     width: initial;
    }

    Thread Starter jmarc4312

    (@jmarc4312)

    OK great now I see how this works better. I see that you have to use all the pieces that call to it. I am using ‘inspect element’ on Chrome and saw all those parts but just didn’t know which one to direct it too.

    I am going to read that link you recommend now. I am on to making my website more custom. Thanks again!

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Using Twenty Eleven Theme right sidebar is loading on bottom of page’ is closed to new replies.