Please check http://blog.speksnijder.com/over-ons/
I have set header option into transparant.
The first item in page builder is Image with Hotspots
The website layout is boxed
As you can see the menu position is place to the right. What can I doe about that.
The issue is boxed layout with transparant header. With this combination the menu is out of position.
Hey!
Try adding this to your custom CSS.
.cart_dropdown {
transform: translate(-40px, 0px);
}
Best regards,
Elliott
No, that doesn’t help.
Hey!
Please look for this code in the Quick CSS field:
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
width: 1310;
max-width: 90%;
}
The width property unit is missing. In this case “px”. If you can’t find, try to add this code:
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
width: 1310px;
max-width: 90%;
}
Cheers!
Ismael
I have pasted the code in custom css:
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
width: 1310px;
max-width: 90%;
}
and this solves the problem.
Just for understanding. What do you mean with “Please look for this code in the Quick CSS field”
Are you aiming at the elements inspection of my browser? Because I couldn’t find the code in css file. It’s hidden.
Hey!
In your custom CSS code, you forgot to add unit for width value. So you should find the first line of code Ismael posted and add ‘px’ or remove that code since you already added correct one
Best regards,
Yigit
Woops… I’m to fast jumping to the conclusion that it’s fixed, because it is not.
Like I said, I have copied the advised code. And after that the complete width of the website became wider!!
So, after that I checked the set dimension in theme settings and there the px was missing.
So, instead of 1310px it was 1310.
Adding px is the trick! :-)