The first one is that I want to have a "normal" full-width footer at the end of projects built with a split-screen layout, just like on the other pages.
i think this wont work cause the footer is used as the left half of the splitscreen
you could only try to create a custom html element yourself and then use that as th footer:
lay options → custom css & html
custom html at bottom
<div class="my-custom-footer"></div>
custom css:
.my-custom-footer{
height: 30px;
width: 100%;
background-color: blue;
z-index: 50;
position: fixed;
bottom: 0;
left: 0;
}
this will just be a fixed empty blue bar at the bottom of ur browser
The second problem is the "Active Background Color" from the project index, and it's kind of strange because it worked already. Even when I turn off all custom code, the problem doesn't disappear. The current project in the index on the left side of the "cases" page only gets the active state when the site is reloaded – I didn't get it after a while of research.
oh i see!
i will release an update now that fixes this!