Topaz mobile portrait still not fixed! SOLUTION from me!

Hi,

I’ve checked the Topaz Forum website again and some things are changed for the better, but the main problem persists (horizontal scroll in the individual posts).
Also it is nice to get some feed back when a Topaz customer helps you out!

Landscape mode has still issues on a mobile phone too!
.topic-body needs tuning with the proper mediaquery.

Regards David

The media query effects all sizes from 0px to 775px.
/* Tablet (portrait) ----------- */ @media all and (max-width: 775px) {

You find the CSS here:
https://community.topazlabs.com/stylesheets/app/assets/stylesheets/desktop/topic-post.scss

This is the problem causing horizontal scroll in portrait mode:

.topic-body { box-sizing: border-box; width: calc(100% - 47px); //100% - [width of .topic-avatar + 2px]; }
}

This is the solution horizontal scroll is gone:
.topic-body { box-sizing: border-box; width: 100%;