The Problem With Popup Contents Being Clickable When Closed.

Posted in: Newspaper
Post count: 19

Hello.
I use two popups on my site. One for wide screens and one for mobile view. However, I have a problem, even if the popup is closed, the links and logo in it can be clicked. Like this: https://prnt.sc/-lNkuqZeIp05

Helped with this from the TagDiv team, but it didn’t completely fix the issue.
Added this code to CSS for solution;


@media (min-width: 767px) {    
#tdm-popup-modal-td_m_5d6f.tdm-popup-modal-over-screen .tdm-popup-modal {
transform: translateY(calc(-100% - 1px))!important;
}}

However, the problem still persists as below.

https://prnt.sc/oK3wBX_WYAom

Do you have a permanent solution suggestion?

*Site link: https://mcthukuk.com/

  • This topic was modified 4 years by AZAR GOZALLI. Reason: Website link added
Post count: 35449

Hi,

Can you please try this custom css for mobile:

#tdm-popup-modal-td_m_5d6f.tdm-popup-modal-over-screen .tdm-popup-modal {
 display: none;   
}
#tdm-popup-modal-td_m_5d6f.tdm-popup-modal-over-screen.tdm-popup-modal-open .tdm-popup-modal {
 display: block;   
}

The code was set in the the theme panel > custom code> advance css> in mobile section.
Please check the website and let us know the results!
I hope this will help you!

Post count: 19

It worked perfectly. Thank you for your help.

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.