- This topic has 4 replies, 3 voices, and was last updated 10 years, 5 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 eStore Forum › WPeStore – Adding HTML to product variations
I have tried to add some simple HTML to the product variations box like <b></b> to bold some text but every time I do it breaks the layout of my page. See: [http://66.147.244.61/~raphajou/ai1ec_event/knowing-redeemer-discovering-redemption/]. The side bar loses all formatting and all the text in the sidebars turn bold.
Here is a page where I have removed the code and you will see the formatting looks fine. [http://66.147.244.61/~raphajou/ai1ec_event/suicide-its-tragedy-and-how-to-respond/]
The calendar page [http://66.147.244.61/~raphajou/calendar/] also has formatting problems but as soon as I remove this code from the product variations the calendar page looks great.
Is there another way to add these options in so that I can bold certain text WITHOUT breaking the layout?
Thanks!
There is no way to add HTML formatting to the variation text, because it will confuse the payment gateway.
Ok, so if I understand correctly, I can’t make any info in the variation bold. Is there another way to change this like in CSS?
You can make it bold by using some CSS.
1) Grab this custom CSS plugin:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
2) Enter the following CSS in there:
.eStore_variation{
font-weight: bold;
}
Great, thanks!