HI
I have the problem that my banner widget i made looks perfectly fine on desktop preview but once i switch to mobile preview it looks awful. (Look at the Photo)
Can someone help me? (the website is on google sites)
Could you please send me a direct link to the webpage where your widget is installed?
I’ll be delighted to check it for you
Thank you!
Unfortunately, due to the peculiarities of the Google Sites platform, there is no option to fix this issue properly. If to stretch the widget block for mobile, there will be too much space underneath the widget on desktop. I am really sorry
Please let me know if this explains things or if you have any further questions.
Is it possible to make a widget only seeable on desktop? So i can make one for mobile and one for desktop.
Sure, here is a special code for hiding a widget on mobile devices:
<style>
@media (max-width: 450px) {
.elfsight-app-WIDGET_ID {
display: none !important;
}
}
</style>
Here you need to replace WIDGET_ID with the ID of your widget and add the code to the styles file on your website.
Check it out and let me know if it helped