Hello, can someone help me in how can I place my logo on top of the image banner top middle center and to make my Header much more thinner please!
1 Like
yeah please
Hi @mikenoxus
Would you mind to share your Store URL website? with password if its unpublish. Thanks!
1 Like
ohhh I thought you were going to help me with my question, thank you man but I am already being mentored.
Thanks for the info, try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
header.header.header--middle-center.header--mobile-center.page-width.header--has-menu.header--has-social {
height: 100px;
}
.header__heading-logo {
height: 90px;
}
- And Save.
- Result:
1 Like
Thanks man it worked!
1 Like
Try this one.
- rom your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.collection__title.title-wrapper.title-wrapper--no-top-margin.page-width {
text-align: center;
}
.title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
justify-content: center;
}
- And Save.
- Result:
1 Like
1 Like
Yes we can do that. Check this one.
Sasme Instruction.
h2.title.inline-richtext.h2 {
border-bottom: 1px solid grey;
padding-bottom: 15px;
}
.title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
display: unset;
text-align: center;
}
.page-width.section-template--20719690678583__dd1fbad7-19ab-42f6-bed7-0465704a98e9-padding.isolate h2.title.inline-richtext.h2 {
margin-bottom: 30px;
}
And Save.
Result:






