anyone can help me? please, I need custom CSS advice

bugeast

Junior Member
Joined
Aug 21, 2015
Messages
177
Reaction score
29
currently I using blogging theme from mythemeshop, but....
blogging theme.jpg
You can see the red circle.
i dont like default setting theme.

how to fix it? please help me

sorry for wrong grammar, i'm not native
 

Attachments

  • blogging theme.jpg
    blogging theme.jpg
    33.4 KB · Views: 181
  • blogging theme.jpg
    blogging theme.jpg
    34.1 KB · Views: 186
Last edited:
any there can help me?
 
Here is an example:

CSS:

Code:
li span{   
    display:block;
    width:50px;
    word-break:break-all;
}

HTML:

HTML:
<li><a>nav</a><span>l;asdfjksdajgds;lkgsdkgjk</span></li>

Or as whiteblackseo said, add <br> in the code after specific word you want to be added a new line.
 
maybe

overflow-wrap: break-word;
white-space: wrap;
 
Last edited:
In the CSS code, change "word-break:break-all;" to "word-break:normal;"
 
Back
Top