Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: trouble lining up page #9925
    drumminhands
    Member

    FYI, I used the following code to set no hyphens in desktop by hyphens in mobile. Seems to work.


    /* ### Remove hyphens in desktop while keeping in mobile ### */
    @media only screen and (max-width: 3000px) {
    .site-content article {
    word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    }
    }
    @media only screen and (max-width: 480px) {
    .site-content article {
    word-wrap: normal;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    }
    }

Viewing 1 post (of 1 total)