I struggle with CSS and have a basic understanding to make adjustments to my website.
The issue I am encountering involves the .entry-content ul li
elements. On desktop, they display correctly without random word breaks, but on mobile, words are being cut off at any character - for example, "supernatural" appears as "supernatura" on one line and then "l" on the next line.
I am feeling overwhelmed and unsure of how to resolve this. I attempted the code they suggested
.entry-content ul li{
word-break: break-all;
max-width: 420px;
}
However, it caused issues on my desktop version, which was already experiencing random word breaks, and did not fix the problem on mobile, so I had to remove it altogether.
Thank you