- This topic has 4 replies, 2 voices, and was last updated 12 years, 7 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 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 › Changing border colors (or removing borders) on login, edit profile forms, etc..
Tagged: emember css
Hello everybody, and excuses for my bad english.
I just searching for a way to remove (or change color to #ffffff ) on the forms like login, edit profile, etc…
I’m not a “pro” in CSS
See for example my page: [http://www.agess.org/connexion]
Thanks in advance for help
Excuses, i wanted to say how to remove the “borders”
Those borders are coming from the CSS in your theme.
[http://www.agess.org/wp-content/themes/AgessBizz/style.css]
Line 1616
.art-article th, .art-article td
{
padding: 2px;
border: solid 1px #7095A9;
vertical-align: top;
text-align: left;
}
You can override it with a more specific rule in custom.css in your theme
e.g.
#wp_emember_loginForm th, #wp_emember_loginForm td
{
border: 0;
}
Thank Youuuuu
Runs perfect… thanks one more time