hi,
my store url is - https://embrfragrance.com/
password- aoleeb
I want my logo to be on the extreme left and the menu and cart to be on extreme right just like the picture I have attached.
can you please help??
hi,
my store url is - https://embrfragrance.com/
password- aoleeb
I want my logo to be on the extreme left and the menu and cart to be on extreme right just like the picture I have attached.
can you please help??
use this code
.password-header {
max-width: 2500px !important
}
Hi @Prarthana ,
I understand that you want to I want the logo to be on the extreme left and the menu and cart to be on extreme right just like the picture I have attached.
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu {
padding-left: 0px;
padding-right: 0px;
}
Result:
I hope it help.
this didn’t work.
this didn’t work
Hi @Prarthana ,
As what Ive seen in your website now, the padding was remove. But I think you want more to move far? Just clarification do you want to remove the icons(search and cart) as same showed your sample image?
@Prarthana add below css base.css file
@media (min-width:768px)
{
.gradient {
position: absolute !important;
height: 80px !important;
}
.header .header__heading-link {
position: absolute !important;
left: 2px !important;
top: 20px !important;
}
.header--middle-left .header__inline-menu {
position: absolute !important;
right: 10% !important;
top: 20px !important;
}
.header__icons {
position: absolute !important;
right: 2% !important;
top: 20px !important;
}
}
Hi @Prarthana ,
You can try this one. Same instruction copy and paste in your theme.css file.
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu {
max-width: 98%;
display: flex;
justify-content: space-between;
}
nav.header__inline-menu {
position: absolute;
left: 35%;
}
i hope it help.
We can put a media queries for that. This one.
@media only screen and(max-width: 1920px){
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu {
max-width: 98%;
display: flex;
justify-content: space-between;
}
nav.header__inline-menu {
position: absolute;
left: 35%;
}
}
I hope this one help.
but this is the same media query as the last one. didn’t really work ![]()
thank you so much!!!
It seems it work well. Happy to help. ![]()