- This topic has 4 replies, 3 voices, and was last updated 9 years, 4 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 › WP eStore Tweaks › Remove hyphens from poduct descriptions using CSS
Tagged: css, description, product, Tweaks
Hi, I’m using a number of [wp_eStore_fancy1 product items and my descriptions have a lot of end of line hyphens in them. Was hoping there’s an easy way to stop hyphenation. I tried putting
.eStore-product-description {
hyphens: none;
}
into /wp_eStore_custom_style.css but that made no difference.
Here’s my page: [http://velovision.com/printed-magazines]
Thanks.
Hi, Please use our custom CSS plugin to apply your CSS code: https://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Those hyphens are likely coming from a line-wrap. Those are good to have for readability.
I have WordPress Custom CSS Plugin Version 1.3 and inserted the CSS into there. It did not, however make any difference – still lots of hyphens:
[http://www.velovision.com/printed-magazines/]
To be clear, I did not want to remove the hyphens, I wanted to stop hyphenation.
Print magazines available as a separate pur-
chase. Most issues from Issue 4 to the cur-
rent issue available.
becomes:
Print magazines available as a separate
purchase. Most issues from Issue 4 to the
current issue available.
Thank you.
@HowardYeomans, Try this:
.eStore-product-description{
-moz-hyphens: none;
-ms-hyphens: none;
-webkit-hyphens: none;
hyphens: none;
}