Hey there everyone,
I am using the Dawn theme on my website but I am wanting to center the navigation bar but cannot figure out how to go about doing this.
Can someone help please?
A link to our website is here: www.untmed.com
Many thanks
Hey there everyone,
I am using the Dawn theme on my website but I am wanting to center the navigation bar but cannot figure out how to go about doing this.
Can someone help please?
A link to our website is here: www.untmed.com
Many thanks
@Untmed Go to assets/base.css and paste below css at bottom of file.
.header
{
display: flex !importat;
justify-content: space-between !importat;
}
add this code to your base.css file.
Navigate to online store >> Click edit theme code.
Now find base.css and paste the following code:
@media screen and (min-width: 990px){
.header--middle-left {
grid-template-columns: auto auto auto !important;
}
}
yes, please try this code
@media screen and (min-width: 990px){
.header--middle-left {
display: flex;
justify-content: space-between;
}
}