• Resolved WorkinWP

    (@iguanamom)


    Hi,
    is there a way to remove the hero section from all Woo category pages? Is this possible by upgrading to the Pro version? It appears that it’s connected to the homepage hero as if I adjust the size, it adjusts it everywhere. I just don’t want it on there or if it must be, at least change the black to a featured image somehow.

    Thanks!

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter WorkinWP

    (@iguanamom)

    Disregard, I figured it out:

    .woocommerce .c-hero {
    display:none
    }

    Add padding to see the dropdown box

    .woocommerce {
    padding-top: 50px ;
    }

    Theme Author pixelgrade

    (@pixelgrade)

    Hey,

    Your solution should work. However, while checking your website on mobile I saw an arrow that shouldn’t be there.

    You can hide it using the following code:

    .woocommerce .down-arrow–bubble {
    display: none;
    }

    Stay awesome,
    Madalin
    Pixelgrade

    Thread Starter WorkinWP

    (@iguanamom)

    Ahhh thanks for that! I tried it and it didn’t work. I tried adding !important but that didn’t help. I inspected the area and tried to also add in .arrow but that didn’t help either. Any other suggestions? Thanks for catching that.

    Theme Author pixelgrade

    (@pixelgrade)

    Hey,

    It looks like there is a small typo, a missing hyphen between arrow and bubble.

    This code will hide the arrow:

    .woocommerce .down-arrow–bubble {
    display: none;
    }

    Stay awesome,
    Madalin
    Pixelgrade

    Thread Starter WorkinWP

    (@iguanamom)

    Thanks, this is where we learn the difference between a dash and a hyphen! lol When I pasted it in the first time, it left out the extra hyphen, so I added it, but used a dash instead. It was apparent when I pasted yours in underneath to see what was wrong…the dash was a little longer than the hyphen. Fixed it now. Thanks again!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Woo category page hero’ is closed to new replies.