- This topic has 8 replies, 3 voices, and was last updated 11 years, 2 months ago by .
Viewing 9 posts - 1 through 9 (of 9 total)
Viewing 9 posts - 1 through 9 (of 9 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 eStore Forum › WP eStore Troubleshooting › estore- how do i change font color in the stylish squeeze form
Tagged: customization, Font, squeeze form
I am using the eStore Stylish Squeeze Form Addon. In the squeeze form where they fill out their name and email the font is very light grey, barely readable. How do I change that to a standard black?
Please post a link to the page where you have the stylish squeeze form. It will help me see if the font color is being interfered by your theme’s CSS. Then I will be able to give you more help.
Sure thing:
[http://lomobimarketing.com/googleplus/] (Note: link no longer valid)
Hi,
Put the following code in your wp_eStore_custom_style.css file which can be found in the eStore plugin directory which has the following name wp-cart-for-digital-products:
.eStore_ssf_template_2_name_input {
color: #575757;
}
I’m fairly new to WP, can you explain that a little please?
Here are some steps you can follow:
1) Use an FTP program to log into your site and traverse to the following directory:
wp-content/plugins/wp-cart-for-digital-products
2) Then FTP the wp_eStore_custom_style.css file from your host to your computer.
3) Once the above file is on your computer, open it using a text (or code) editor.
4) Paste the CSS code I submitted in my previous response into the file.
5) Save the file and FTP it back to your host to the same directory you got it from.
Alternatively, if your theme has an option that allows you to add custom CSS tweaks for your site then you can use that option too.
Ok, that worked for the “name” field but not the “email” field. I tried changing your code by replacing name with email but that did noting. What can I do for that field? Thank you for your help!
Ok that’s easy to do.
Replace the code I gave you earlier with this one:
.eStore_ssf_template_2_name_input, .eStore_ssf_template_2_email_input {
color: #575757;
}
That worked. Thanks a lot, you’re awesome! How did you even know that?