Skip to main content
Topic: Letters separated (Read 1584 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Letters separated

It seems that at my new forum the words are separated anywhere. Look at the topic titles please. 

Re: Letters separated

Reply #1

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.
Bugs creator.
Features destroyer.
Template killer.

Re: Letters separated

Reply #2

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;

 

Re: Letters separated

Reply #3

Ohhh... okay, that one!
Bugs creator.
Features destroyer.
Template killer.