[deleted] ,
Glad to hear that it worked!
How can I create a position for vertical view and a different one for horizontal view?
Great question! 🤔
You can specify if the screen is on Portrait or on Landscape mode in CSS.
Here's an updated custom CSS that you can try:
@media screen and (max-width: 769px) and (orientation: portrait){
.buttonizer {
left: 0% !important;
bottom: 10% !important;
}
}
@media screen and (max-width: 1024px) and (orientation: landscape){
.buttonizer {
left: 0% !important;
bottom: 0% !important;
}
}
Please let me know if this works for you! 😁