Hi @Chris_Rauser,
Good work on the website!
Found some issues:
<RadzenLayout>
should be direct descendant of<body>
:
<body>
<RadzenLayout ...>
- Not sure why, but the footer is initially hidden and appears on scroll, is there any custom logic?
- Try adding the following CSS to your styles:
@media (max-width: 767px) {
.rz-layout {
height: 100dvh !important;
}
}
100dvh refers to 100% of the dynamic viewport height — meaning the value will change as the user scrolls. More info here.