tea2204 Posted July 10, 2020 Share Posted July 10, 2020 I'm working on a 7.0 Brine website & I added this CSS to remove all hypens: p, h1, h2, h3 { webkit-hyphens: none !important; moz-hyphens: none !important; ms-hyphens: none !important; hyphens: none !important; } The hyphens are gone when I preview the site in Squarespace, but on mobile in Chrome & Safari, the hypens are still rendering and I'm not sure why, I've tried everything even setting a max-screen width of 640px to remove them, but they still show up. Any help would be appreciated! Link to comment
rwp Posted July 10, 2020 Share Posted July 10, 2020 p, h1, h2, h3 { -webkit-hyphens: none !important; -moz-hyphens: none !important; -ms-hyphens: none !important; hyphens: none !important; } tea2204 1 Link to comment
tea2204 Posted July 11, 2020 Author Share Posted July 11, 2020 3 hours ago, rwp said: p, h1, h2, h3 { -webkit-hyphens: none !important; -moz-hyphens: none !important; -ms-hyphens: none !important; hyphens: none !important; } This worked, thank you!! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment