• Hello everyone. I am trying to remove the header image from my wordpress pages. My site’s header image takes up an enormously large area of the page and i don’t particularly like the look of it. If i remove the image, it leaves it as a big dark box with the title in it. Is there any way I can change the size of it or remove the whole header completely?

    here is a link to one of my pages:

    https://makeitmix.com/index.php/shop/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello iancvergara,

    Add below code into your current active theme’s style.css file located at wp-content/themes/your_current_theme/ folder.


    .page-header-module.module {
    padding:0;
    }
    section.woocommerce-page-title {
    padding: 0px;
    height: 182px;
    }
    .page-header-module .module-title {
    margin-top: 140px;
    }

    Note : All Changes you done in any file of theme are gone when you update theme. So prefer Child Theme.

    Hope this will helps you.

    Is there any way to remove headers on specific pages? i.e. Keep header on home page, remove header on about page

    • This reply was modified 8 years, 1 month ago by harleydeed.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Header image from Shop Isle theme’ is closed to new replies.