Hi
When a user registers for our site, the confirmation displays as white text with a white background so it is not visible. I have tried the following quick css but this class seems to be over-ridden by something in the theme.
.wpmem_msg {
background-color:#000000;
}
#wpmem_msg {
background-color:#000000;
}
To reproduce this issue, you would need to register for our site, which you can do from the page below:
http://newsite.redhill-archers.org.uk/wordpress/index.php/members-page-1/
When you have submitted, you will see the confirmation dialog, which is white on white.
I have included an admin login below so that you can make changes. Details attached.
Thanks
Hey colinredbond!
Add this to your custom CSS.
.wpmem_msg * {
color: black !important;
}
Regards,
Elliott
Thanks Elliott that worked. I have one other problem though – On the login page, there is a reset password link, which is partially overlapping the login button. You can see this on any of the members pages when not logged in. Can you give me a quick bit of css that would fix that by moving the forgot password / reset passwd link down a touch?
Thanks
http://newsite.redhill-archers.org.uk/wordpress/index.php/members-page-1/
Hi!
Try adding this.
.link-text {
top: 20px;
position: relative;
}
Regards,
Elliott
That worked, thanks!