site: https://atlkickswarehouse.myshopify.com/
pw:josh
A user seeks to reposition their website’s menu bar to the right side. They shared their site URL and noted their theme lacks a theme.scss file.
Proposed Solutions:
PageFly-Victor suggested adding CSS code to the base.css file targeting #SiteNav nav with absolute positioning (right: 96px, top: 30px) for screens wider than 750px.
GemPages recommended inserting code into theme.liquid before the </body> tag.
PageFly-Victor provided an alternative CSS snippet targeting .header--has-menu and .header-reward elements using flexbox properties (display: flex, justify-content: space-around) and order adjustments.
The initial solution did not work for the user. The discussion remains ongoing with multiple CSS approaches offered but no confirmed resolution yet.
there is no theme.scss file in my asset folder
Hi @atlkicks ,
I’m Victor Nguyen from PageFly.
You can go to Online store => themes => actions => edit code and add this code on file base.css
@media only screen and (min-width: 750px){
nav #SiteNav {
position: absolute;
right: 96px;
top: 30px;
}
}
Hope this answer helps.
Best regards,
Victor | PageFly
Hello Victor, unfortunately this solution did not work for me.
Hello @atlkicks
You can follow these steps:
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team
Hi @atlkicks ,
You can try this code
@media only screen and (min-width: 750px){
header.header.header--top-left.header--mobile-left.page-width.header--has-menu{
display: flex !important;
justify-content: space-around !important;
}
header-drawer{
order: 4 !important;
}
}