- This topic has 3 replies, 3 voices, and was last updated 6 years, 6 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 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 Payment Gateway Bundle – CVV Icon in the Wrong Place
On my “payment details” page (found at betweentime.org/collect-details/), the CVV icon appears above the Submit button. Is there a way I can move it so it’s next to the CVV field instead?
I’m using WP Payment Gateway Bundle v2.2.8, WordPress 4.9.6.
Thanks in advance for your help!
It “looks like” the CC (especially the CVV) fields are taking up the entire width of the <div> so there’s no space left for the tooltip icon to go, other than wrapping onto the next line.
The CVV field is actually supposed to be one third of the page. Your theme isn’t respecting that CSS so the CVV field is taking up the entire width.
In your case, you can just hide the tooltip section. Use the following CSS tweak to hide the tooltip:
.wp_pg_card_cvv_tooltip {
display: none;
}
As a simple test, you can do the following theme test to see how that form is actually suppose to render (without your theme overriding the CSS of our plugin outputs):
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
Thank you for your quick responses! If all else fails I’ll just hide the tooltip, but my client would like it to stay. I’m going to try to force the theme to follow the CSS for the field widths. Just to save me some time, can you tell me the filename for the CSS that controls that?
Thanks again