Shop Categories

X

Hyphenation

Home Forums Agama Pro Hyphenation

Topic Resolution: Resolved
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #20230
    Ghost
    Participant

    Hi Zex!

    Can you please advice how to disable hyphenation on whole site? I would like normal word wrapping.

    Thanks in advance!

    #20268
    Zex
    Moderator

    Hello, Ghost!

    Please insert the following code into CUstomizing ->General->Additional CSS:

    body p{
      -webkit-hyphens: none;
      -ms-hyphens: none;
      hyphens: none!important;
    }

    Regards

    #20296
    Ghost
    Participant

    Hi Zex!
    Thanks for fast reply. Unfortunately there is still some words of from page that are hyphenated. Those are news titles on side bar for main page.
    Appreciate your support.

    #20314
    Zex
    Moderator

    Hello, Ghost,

    Instead of the code I gave you above, try to insert this one (or delete the “p” from the above code):

    body {
      -webkit-hyphens: none;
      -ms-hyphens: none;
      hyphens: none!important;
    }

    Regards

    #20354
    Ghost
    Participant

    Hi Zex!

    As you can see on my web page code from above did not help. Right side bar news titles are hyphenated.

    Regards

    #20355
    Zex
    Moderator

    Hi,

    In that case, try this one instead:

    p, a, h1, h2, h3, h4, h5, h6 {
      -webkit-hyphens: none;
      -ms-hyphens: none;
      hyphens: none!important;
    }	

    Regards

    #20357
    Ghost
    Participant

    Hi,

    thanks a lot! That piece of code finally did the trick.

    Regards.

    #20358
    Zex
    Moderator

    I’m glad we found the right solution.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.