Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Troubleshooting › Text Or Image Not Showing Up On The Submit Buttons With The Forms
- This topic has 6 replies, 4 voices, and was last updated 12 years, 3 months ago by admin.
-
AuthorPosts
-
March 17, 2010 at 5:42 am #937bonezMember
I have a little problem with my submit buttons, with the member login, register form
there is no text or graphic that says submit, It’s just blank, you have to hover over the blank button to see if it will work, Is there a fix?
Thanks…
March 17, 2010 at 6:49 am #18916amin007ParticipantMost likely the color specified for in the CSS is matching with the one specified in your site’s background. So it should just be a matter of changing the color to something else. Please post a link to your site so I can have a look and suggest a workaround.
March 17, 2010 at 4:16 pm #18917bonezMemberYea I think you’re right, I tried to look at my css for my blog but I can’t seem to find the color issue. It would help if I knew the color of the text of the forms.
Although I have found the css that controls the border around my images, if I try and change it it really screws up the forms, here is that css
input{ /*for all forms unless overwritten*/
background-color:#FFFFFF !important; /*the important gets rid of the yellow google toolbar field style*/
border:1px solid #c8cdd2 !important;
margin:3px 0px;
padding:4px;
}
Here is my link, http://www.vipblogsetup.com
Thank You
March 17, 2010 at 11:17 pm #18918amin007ParticipantYep, looks like your theme is specifying the background to be #fff (which is white). So add a color property in there like the followng:
color: #000;
The other option is to change the CSS of the eMember plugin. You can change the color property specified in the following css to color: #000;
.eMember_button {
text-transform: uppercase;
font-size: 12px;
padding: 3px 30px 3px 30px !important;
color: #fff;
font-weight: bold;
background: #4780AE;
border-left: 1px solid #7ab7e8;
border-top: 1px solid #7ab7e8;
border-right: 1px solid #084577;
border-bottom: 1px solid #084577;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
margin: 5px 0px 5px 0px;
cursor: pointer;
}
March 17, 2010 at 11:49 pm #18919bonezMemberThank You very much… That did the trick. First I changed the css in my theme but that turned my form field black, so I then changed the css in wp emember and that did it
Thanks again, I really like your support “TOP NOTCH”
Thanks,
Jimmy
August 5, 2012 at 6:41 am #18920AuthorYourDreamsMemberI cannot find the submit button either. But all this CSS code is over my head.
August 5, 2012 at 11:17 pm #18921adminKeymasterWhat are you trying to do? If you just want to customize your add to cart button then you can simply specify an image for the button:
-
AuthorPosts
- You must be logged in to reply to this topic.