MyBB Community Forums

Full Version: Recent threads word break?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Sorry, finally I can't help you out.

The issue comes from theme.....it would be better to contact the theme author.

A quick fix would be to hide the avatar images for smaller screens.

Insert into theme global.css
@media screen and (max-width: 1450px) {
    div#recentthreads img {
        display: none;
    }
}
(2017-02-20, 08:57 PM)SvePu Wrote: [ -> ]Sorry, finally I can't help you out.

The issue comes from theme.....it would be better to contact the theme author.

A quick fix would be to hide the avatar images for smaller screens.

Insert into theme global.css
@media screen and (max-width: 1450px) {
    div#recentthreads img {
        display: none;
    }
}

Ahh well I need the avatars to show I guess I'll leave it how it is.
Thanks anyways. Smile
Pages: 1 2