No Visible Cross In The Popup Window On The Phone - Question | JoomShaper

No Visible Cross In The Popup Window On The Phone

Ł

Łukasz

SP Page Builder 7 months ago

Hello, how can I set the cross to be at the top of the popup window? The cross that closes the window is on the right side and is invisible. You can't close the window on your phone.

0
7 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 7 months ago #188717

Hello Łukasz,

Thank you for reaching out to us. Could you please share your website URL so that I can assist you more effectively?

Looking forward to your response.

Best regards,

0
Ł
Łukasz
Accepted Answer
7 months ago #188718

is in hidden content

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 7 months ago #188720

Please, use this css in your custom css, You can follow this guide: https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta

@media (max-width: 768px) {
    #sp-pagebuilder-popup-close-btn-95 {
        right: 15px;
        top: 15px;
    }
}

Thanks

0
Ł
Łukasz
Accepted Answer
7 months ago #188724

this solution doesn't work.

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 7 months ago #188728

Please, use this, instead of previous one.

@media (max-width: 768px) {
    #sp-pagebuilder-popup-close-btn-95 {
        right: 15px !important;
        top: 15px  !important;
    }
}

Thanks

0
Ł
Łukasz
Accepted Answer
7 months ago #188731

Thanks it works.

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 7 months ago #188733

You are welcome.

0