- This topic has 5 replies, 3 voices, and was last updated 11 years, 2 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Tweaks › eMember – Trying to edit CSS for Sitewide Lockdown Box
Tagged: edit css, lockdown box
I am trying to edit the login page that appears when someone goes to a page that is locked down with the sitewide domain lockdown.
I have used this code in Jetpack’s custom CSS form and nothing will change.
.emember_modal {
border: none !important;
}
Also, is it possible to change the shade of blue used on the background? The background doesn’t appear to have a css element associated with it. I would like to use a custom CSS background image behind the login form.
Please share a link to the page where I can go and see how the lockdown widget looks on your site. I will then be able to offer you some CSS tweak advice.
Here’s a link:
[https://westonlisa.org/updates/]
Thank you for your help!
Hi, please add the following piece of code to the eMember_custom_style.css
file. It’s under wp-eMember/css
direcotry.
#lockdownbox.emember_modal{
border: none !important;
}
Thank you!
The main thing I am trying to change is the light blue background color. Is there a CSS element I can use for that?
Add the following CSS to the custom stylesheet file to change the background color to white.
#exposeMask{
background-color: #FFFFFF !important;
}