Quick question.
I am using the Dawn Theme. Currently, the logo is middle left, which is perfect. But is there anyway to move the navigation to the right side of the website? There only appears to be 3 options when it comes to logo and navigation placement. I love the location of the logo but would like to move only the navigation.
My site:
WWW.PENNSYLVANIAPARKS.ORG
Thanks in advance!
Hi @Justin34 ,
I’m Kate from PageFly - Landing Page Builder, Please give it a try with this new solution
<>
@media screen and (min-width: 990px)
base.css?v=…? [sm]:2228
.header–middle-left {
grid-template-areas: “heading navigation icons”;
grid-template-columns: auto auto 1fr;
column-gap:17rem;
<>
What section of the code editor do I add this code? Thanks so much!
Hello @Justin34 ,
Please give it a try with this new solution in base.css:
@Justin34
hello,
Please add code given below above in theme.liquid.
layout >> theme.liquid
@media screen and (min-width: 990px){
.header--middle-left {
grid-template-areas: "heading heading heading navigation icons"!important;
}
after the adding given code looks like this,
1 Like
Worked perfectly. Thanks!