How can I adjust the header size and features in the Debut theme?

Hi!

I am trying to change the bottom size in the free Debut theme, now it looks like it is super huge (see photo).
Also i would like to remove the search icon so that you only see the shopping bag.

And i would love to have the header menu (rings,bracelets & cuffs, etc…) to be sticky, but this without the logo.

If anyone could help i would be very grateful!

Kind regards,

Niels

@Descaux

Please share your web shop URL!

Thanks!

Hello, @Descaux

Welcome to the shopify Community.
I read your problem and it seems that I need to analyze your website to provide solution here.
Would you please share your website URL and if your website is password protected then also provide password.

Sure! https://descauxe.myshopify.com/ pass : iaglea

Sure! https://descauxe.myshopify.com/ pass : iaglea :slightly_smiling_face:

Please Go to Online Store → Themes → Edit code → Assets → theme.css.liquid and paste this code at the end of this file.

.site-header__search-toggle {
    display: none !important;
}
.site-nav {
    padding-bottom: 0px !important;
    margin: 25px 0px 8px 0px !important;
}

#shopify-section-header {
position: sticky;
    top: 0px;
    z-index: 1000;
    background-color: #ffffff;
}

@Descaux

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (min-width: 750px){
.site-header.logo--center { padding-top: 20px !important;}
.site-nav {margin: 10px 0; margin-top: 25px;}
.site-nav--centered { padding-bottom: 0px !important;}
.site-header__icon .icon-search {display: none !important;}
#shopify-section-header { position: sticky;top: 0px; z-index: 1000;background-color: #ffffff;}
}

Hope This work !

Thanks!

Hi Sir,

Unfortunately this didn’t made any change :disappointed_face:

@Descaux

Please check your CSS start end bracket some closing bracket is missing please check screenshot

Can you check again? i removed it but it doesn’t seem to make any changes

remove this css class

.site-header { height: 50px;

and add new css class

@media only screen and (min-width: 750px){
.site-header.logo--center { padding-top: 20px !important;}
.site-nav {margin: 10px 0; margin-top: 25px;}
.site-nav--centered { padding-bottom: 0px !important;}
.site-header__icon .icon-search {display: none !important;}
#shopify-section-header { position: sticky;top: 0px; z-index: 1000;background-color: #ffffff;}
}

Thanks, is it also possible to get the top menu sticky?

1 Like

Please add this CSS for sticky menu

#shopify-section-header { position: sticky;top: 0px; z-index: 1000;background-color: #ffffff;}

Thanks!

Thanks! is it also possible without the logo?