Hi
Can you share your site URL so I will be able to see which snippet to be used.
[ Signature deleted ]
Hi,
Thanks for response.
http://createyourbody.pl/
Hi @leszekm,
Hope you are doing good today 🙂
I figured out that following CSS snipet is causing the problem.
@media only screen and (max-width: 768px){
#efbl_popup {
width: auto !important;
height: auto !important;
display: table;
} }
Use this instead
@media only screen and (max-width: 768px){
#efbl_popup {
display: table;
}}
It will work fine.
[ Signature deleted ]
Hi,
I am pretty well today! Thanks for asking. Appreciate for fast response!
I try to use it, but it doesn’ work. Nothing has changed.
@media only screen and (max-width: 768px){
#efbl_popup {
display: table;
}}
Hi @leszekm,
I just checked your site these properties are still there width: auto !important; height: auto !important;
I meant to say that use this `@media only screen and (max-width: 768px){
#efbl_popup {
display: table;
}}code instead of this @media only screen and (max-width: 768px){
#efbl_popup {
width: auto !important;
height: auto !important;
display: table;
} }`
So you need to remove width: auto !important; height: auto !important; from there to make it work fine.
[ Signature deleted ]
It is strange I add it in my custom CSS Snipset. Meaby I should delete width and height in other place? Please can you give me an advice where should I delete it, in any specific file?
@media only screen and (max-width: 768px){
#efbl_popup {
display: table;
}}
I don’t know where it could be in other place to delete this additional command
width: auto !important;
height: auto !important;