hi there,
I am modifying the CE 1.0.5.0 admin header, made it fixed position, it stay fixed no problem but the content scrolling part will float over top of the fixed header.
admin/includes/header.php
<div class="sticky-header">
<ul class="nav justify-content-end">
<?php
........
?>
</ul>
</div>
.sticky-header {
background-color: #000;
color: #fff;
width:100%;
position: fixed;
}
how can I modify the code so that the content will not float over the fixed header, like below:
any help is appreciated, thanks! Lyn