How do I elongate the length of a header, because the size preset options are not what I want. I need help with the coding portion, not conceptual help.
Hey there, could you expand a bit more on what you’re wanting to achieve? Are you referring to the title of a product or page?
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi @NewDevInTrainin ,
Please send your site and if your site is password protected, please send me the password. I will check it.
Hey there! You can acheive this by following the steps below:
1- From the shopify store, got to Online Store >Themes
2- Find the theme you want to edit, and then click Actions > Edit code.
3- Search for “.header-wrapper” class inside your base.css file
4- Add height: (the height you want) in .header-wrapper
.header-wrapper {
display: block;
position: relative;
background-color: rgb(var(–color-background));
}
Example:
.header-wrapper {
display: block;
position: relative;
background-color: rgb(var(–color-background));
height:100px;
}