Can anyone help me remove this big white space where my page title used to be? I need to remove it for all pages and for the collection page.
laz90yur
Can anyone help me remove this big white space where my page title used to be? I need to remove it for all pages and for the collection page.
laz90yur
hi @lazzy99 ,
This is solve for you, Can you going to /assets/theme.scss.css and add the short code bellow at the bottom that file:
.page-width .section-header{
display:none;
}
Hello @lazzy99
Please use below code on assets → theme.scss.css at the bottom to remove unwanted space on policy page
@media only screen and (min-width: 750px){
body#policy header.section-header{
display:none !important;
}
}
@lazzy99 , do this to fix it in 20 seconds:
.collection-template .section-header{
display: none !important;
}
If it helps you please click on the “like” button and mark this answer as a solution!
Thank you.
Kind regards,
Diego
Want to remove spaces above and below the header ? Use below code…Copy-paste it in Customize>Advanced CSS;
.site-header { padding-top: 0px;
padding-bottom:0px;}
.header-image .site-header .title-area, .header-image .site-header .widget-area {
padding-top: 0;
padding-bottom: 0;
}
Thank you all!!