Hi, I’ve been trying to move this mega menu to be right aligned, i’ve tried other css codes and none of them seem to work. Can anyone please help?
I had this code to increase the width of my header to give space to fit all my elements. Not sure if this info helps.
.header {
width: 100%;
max-width: 100%;
}
The website is: https://boconceptcontract.com.au/
1 Like
Hi,
Your site is password protected please provide password.
Thank you.
Hi @jasondane ,
Please provide password to view your store
zaczee
April 21, 2023, 8:21am
4
Hi @jasondane ,
Can you provide your storefront password
zaczee
April 21, 2023, 8:47am
6
Hi @jasondane
Add this CSS code
Online Store > Themes > Edit code > Assets > custom.css or theme.css
@media screen and (min-width: 990px) {
.header--middle-left {
grid-template-areas: "heading icons navigation";
grid-template-columns: 1fr 1fr 1fr;}
}
Please add this code at the bottom of your base.css file
@media screen and (min-width: 990px){
.header--middle-left {
grid-template-areas: "heading icons navigation" !important;
}
.header__inline-menu { text-align: right; }
}
1 Like
@jasondane
Please add this code at the bottom of your base.css file
@media screen and (min-width: 990px){
.header--middle-left {
grid-template-areas: "heading icons navigation" !important;
}
.header__inline-menu { text-align: right; }
}
1 Like