Adjust Left Nav on Height

How can I:

  1. Prevent my buttons from “squishing” on resize?
  2. When the height gets too small and the button starts to collide with the nav on top of it, prevent the overlay, keep some padding between them, and make the nav bar scroll to give it extra space?

See video above for the issue.

Thanks in advance!

Hello There,

Thanks for writing in!

1.) To prevent the buttons from changing it’s height, please make use of this css code:

.x-anchor {
    height: auto !important;
    display: inline-block;
}

2.) This would be normal because you have the bars in fixed position and the are displayed on top of each other. If you want to prevent this from happening, you will need to add the elements in just one bar only.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.