I am looking to incorporate an external header and two external panels, one on the left and one on the right. The challenge is to ensure that these panels remain visible at all times on larger screens.
I encountered some difficulties positioning the panels with an external header (internal worked fine). I was able to resolve this issue for the left panel by using:
position: absolute;
left: 0;
top: 4em;
However, I faced a problem with the right panel when using:
position: absolute;
right: 0;
top: 4em;
This caused the right panel to be placed above the left panel.
You can view this scenario in action on this jsFiddle: https://jsfiddle.net/9eb4mekr/
When I tried using
position: relative; float: right;
instead, the right panel shifted to the right but ended up below every other panel (you can test it out in the jsFiddle).
Do you have any suggestions on how to properly position external panels alongside an external header while ensuring they remain visible at all times on large screens?