ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: Jorin on December 12, 2014, 03:42:31 pm

Title: Letters separated
Post by: Jorin on December 12, 2014, 03:42:31 pm
It seems that at my new forum the words are separated anywhere. Look at the topic titles please. 
Title: Re: Letters separated
Post by: emanuele on December 12, 2014, 04:46:43 pm
Apparently it is intended:
Code: [Select]
.topic_name h4 {
line-height: 1.429em;
padding-right: 30px;
word-break: break-all;
word-wrap: break-word;
}
Remove the two word-* lines and it will not.

At the moment I can't check the repo to know why it was added, maybe @Spuds or @TE knows.
Title: Re: Letters separated
Post by: Spuds on December 12, 2014, 05:26:48 pm
Here is why the two things were added ....

Fix little misalignment of messageindex with long subject and locked/pinned ...   word-wrap: break-word;
various overflow issues with single string subject text ... word-break: break-all;
Title: Re: Letters separated
Post by: emanuele on December 12, 2014, 05:42:42 pm
Ohhh... okay, that one!