The Grid - Remove hyphenation

Hi,

I am trying to remove the hyphens from the title, using The Grid to display blog posts.
I have tried to add this CSS into my Global Custom CSS (Skin Builder), but so far no success.

.tg-da-blog-skin .tg-element-3 {
word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

Can you help?

Thank you

Hey @PanInternational,

I don’t see a hyphen in the post titles. Would you mind clarifying what the issue is or is this fixed?

Thanks.

Hi,

Well it show on my end.
I have cleaned the cache.

Hello @PanInternational,

Please have your code updated and use this instead:

.tg-da-blog-skin .tg-element-3,
.tg-item .tg-item-title a {
    word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

We would love to know if this has worked for you. Thank you.

Easy, it worked.

Thank you @RueNel

You’re welcome!
We’re just glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.