Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #451125

    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.

    #451129

    The issue is boxed layout with transparant header. With this combination the menu is out of position.

    #451344

    Hey!

    Try adding this to your custom CSS.

    .cart_dropdown {
      transform: translate(-40px, 0px);
    }

    Best regards,
    Elliott

    #451442

    No, that doesn’t help.

    #451726

    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

    #452600

    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.

    #452604

    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

    #452607

    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! :-)

    #452944

    Hey!

    Great. Glad we could help. :>

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘position menu with transparant header and image with hotspot in boxed lay-out’ is closed to new replies.