- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to put cookies notification at the bottom for mobile?
SOLVENov 10, 2020 10:37 PM
Good day,
How to put cookies notification at the bottom for mobile? There's a Banner position option in the settings and I chose the "Bottom" option. It is working on desktop but it is not working on mobile, it is still showing at the top.
Any help?
Thank you!
Screenshots:
Cookie Banner Setting
Option Chosen
Mobile Screenshot
Phone Screenshot
Desktop Screenshot
Desktop Screenshot
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Accepted Solutions
Nov 12, 2020 4:33 AM - edited Nov 12, 2020 5:05 AM
Hi @vhalili (thanks @JessicaH)
Add this css to your site footer HTML in your website settings:
<style>
@media (max-width: 768px) {
#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom {
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
}
}
</style>
edit: Woops, I put <script> instead of <style>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content