• Resolved Mitchell Ellingson

    (@ettermanenterprises)


    I would like to remove the page-header si-has-page-title from all the pages in the woocommerce section of the site. How would I got about doing that?
    I really don’t need the page title listed 3 times in a row so for display purposes I would like to remove it.

    Thanks!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Mitchell Ellingson

    (@ettermanenterprises)

    I resolved by adding:
    .page-header {
    display: none;
    }

    Branko

    (@brankoconjic)

    Yeah, that CSS looks right, but it will remove the Page Header from other pages (non WooCommerce) as well.

    If you only want to target WooCommerce pages, you can add .woocommerce prefix, like this:

    .woocommerce .page-header {
        display: none;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘page-header si-has-page-title’ is closed to new replies.