Hey, im looking for help to fix the cookie button position in mobile devices
Website is in my signature,
Thank you.
Hey @Dabou ,
Please add the below-provided CSS code in the Global Custom CSS section:
button.cky-banner-element {
position: absolute;
bottom: -42px;
right: -30px;
margin: 0;
}
Steps:
Result:
Thank You.
Hey @DevDynamo , thank your for your answer but i would like to change only in the mobile view, not desktop, this code changes for both.
Hey @Dabou ,
Sorry for the previous code. Please add the below-updated code to make changes on Mobile devices only:
/* For Mobile */
@media only screen and (max-width: 767px) {
button.cky-banner-element {
position: absolute;
bottom: -42px;
right: -30px;
margin: 0;
}
}
Thank You.
@DevDynamo it worked, thank you.