Tips and Tricks HQ Support Portal › Forums › WP eMember › eMember – How to remove gray line into form?
Tagged: customize form
- This topic has 10 replies, 4 voices, and was last updated 11 years, 2 months ago by
louis22.
-
AuthorPosts
-
December 22, 2013 at 11:58 pm #10277
louis22
MemberHow can we remove the alternate grey color into form (cell?) ? looking everywhere into css but not finding … sorry about my poor english.
December 23, 2013 at 12:09 am #59812Peter
MemberPlease post a link to the form so we can investigate with firebug.
December 23, 2013 at 4:11 am #59813nur
Memberyou need to remove “alternate” css class from every “tr” tag within the form.
December 23, 2013 at 12:20 pm #59814louis22
Memberthank you. Looking forward to find the form. don’t find it.. Can you tell me in witch php file is it
December 23, 2013 at 12:24 pm #59815louis22
Memberi have put this code into emember_custom_style.css
.alternate{
background-color: White;
}
dont work at all..
tried #ffffff .. dont work too.
I also changed the eMember_style file, but nothing changes. I found the PHP file eMember_registration_utils.php but I did not find the alternate string.
December 23, 2013 at 12:49 pm #59816louis22
Member[http://defides16.com/inscription-gratuite/] and btw, how to remove the «» before «’»
December 23, 2013 at 1:21 pm #59817louis22
MemberHow to please, to edit the various forms eMember? I can not find the information in the forum even after several searches.
When you buy a plugin, it is precisely because we are not developers. In the majority of cases. Although the use of your plugin is well documented, it might be interesting for you (and for your customer) to better document customization?
I must admit that I am a little disappointed.
December 23, 2013 at 9:44 pm #59818nur
Memberwhen you are building a site with wordpress, you should be aware that you may use themes and plugins that define presentation properties using CSS. so if you see something went wrong, you cannot blame a particular theme or plugin without proper investigation. That “alternate grey color” in the form is caused by the theme you are using. our plugin has nothing to do with that. following lines of css code is defined in:
[http://defides16.com/wp-content/themes/simplemag/css/framework.css]
Code:tr:nth-of-type(2n+1) {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
}if you look carefully, you can see that this framework.css file is part of simplemag theme.
December 23, 2013 at 10:55 pm #59819admin
KeymasterGrab this custom CSS plugin:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Then add the following CSS in there to override the backgroun in that table row:
#wp_emember_regoFormWithConfirmation tr{
background: none !important;
}December 24, 2013 at 12:22 am #59820louis22
MemberNur You are perfectly right. That was my mistake. I apologize. I’ sorry.
I confess that I had some frustrations accumulated over the year and I’need to take a vacation for the holiday season. This will be good for me!
Thank you for your support. 5 Stars!
admin thank you .. i’ll give a try !
Merry Christmas and Happy New Year!
December 24, 2013 at 1:24 am #59821louis22
Memberadmin : working great. thank you!!
-
AuthorPosts
- You must be logged in to reply to this topic.