I would like to center current Logo & position the Navigation bar at the very top (above logo) and search bar centered under logo In Charge Shopify Theme.
All of it is exactly what I was looking for but wondering if I can get the logo as a stand alone at the very top center and everything else underneath? Sorry for the confusion
Yes, Ieve already centered thsi one maybe the code didnt listen. Add this code inside the style, before the in the theme.liquid where you place the code.
ul.list-menu.list-menu--inline {
justify-content: center !important;
}
oh I’m so happy to hear! Also, I noticed when I added the code…on the homepage only - the navigation menu drop down categories are white out…you can’t see the text? It’s not in the customization/editor part because it works fine on other pages… can you help with this?
The previous code, I give is nothing to do with the color. Cause it only for the alignment. Check this one. Im not sure what is cause of sudden changes but if you add some app or makes some change it would be possibly the cause.
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__submenu.list-menu.list-menu--disclosure a:hover {
color: black !important;
}
.header__submenu.list-menu.list-menu--disclosure a {
color: white !important;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!