Metus24 The mobile tab extension is covering my custom footer !(Impressum) see screenshots. Is there any way to fix this?
huseyinfiliz Metus24 Add the following CSS code to the custom CSS section on the appearance page in the admin panel. @media @phone { .App { padding-bottom: var(--mobile-tab-height); } }
Metus24 huseyinfiliz thank you so much! It works only when I put it into custom footer. But now it is only visible for registered users. User not registered see my private forum facade (extension) and there it is not visible...
Metus24 huseyinfiliz ok, I found out why it worked. It just wrote @media @phone { .App { padding-bottom: var(--mobile-tab-height); } } As String into my footer and pushed my text up a little bit 😂 it don't think that was your intention. For clarification: in my flarum custom footer I have now: <footer style="text-align: center; padding: 20px; background-color: #f1f1f1; margin-top: 20px;"> <p>© 2025 <a href="https://psy.network/impressum.html" target="_blank">Impressum</a></p> </footer> @media @phone { .App { padding-bottom: var(--mobile-tab-height); } }
treyb Metus24 Hi Metus, this will need to be added to your custom css. @media @phone { .App { padding-bottom: var(--mobile-tab-height); } } Do let me know if that works for you, because for some reason it isnt working on mine any longer.