[email protected] wrote:
Please find it here: 
https://1drv.ms/i/s!AsXLSpl_kyRyhs8GVOg6Tbyfb3axmg
 I just opened the page you mentioned I suspect the problem is that the images do not scale in smaller resolutions and get cut off. There are two reasons:
1. the images have set dimensions, which is bad for mobile
2. there is not max-width:100% set for the images
First remove the dimensions of the images (where you add the images to the topic). 
Then go to /admin/UrbanThemeAdmin/Settings and in the Custom Head Styles paste this code:
.topic-page .page-body img {
   max-width: 100%;
}
This should fix the problem with the "mobile-friendly" message.