1
I have this fictitious application in R.
I tried to adjust the .navbar
, .sidebar
and the .value-box
with the property position: relative;
to avoid overlapping of elements:
.navbar {
position: relative;
}
.sidebar {
position: relative;
}
.value-box {
position: relative;
}
But, always the .navbar
runs over the other elements in the case .sidebar
and the .value-box
when I modify the screen size:
My goal is to get the .navbar
Equal descend occurs now, but the other elements need to descend/adjust to not be swallowed by .navbar
. Something like that:
Thanks for the answer, @Sam. Just one detail: when I replay the page, it gets a big gap between the elements and the
.navbar
. After changing the screen size and returning to normal size, everything is fine. I would like that when processing the page, it was already the right way. Do you know what this might be? In addition, how to remove the scroll from the page of the Carousel?– neves
When you’re online let me know.
– Sam
I’m online @Sam, thank you.
– neves