Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[data-template="thread_view_type_article"] .p-body-main {
max-width: 1024px;
margin: 0 auto;
}
.message.message--article .bbWrapper {
font-size: 18px;
line-height: 1.7;
}
I will try some of your tips.Looking at your site, it appears the style is running around 100% width. It's difficult to style articles when it's like that. Long bits of text stretching the entire monitor just doesn't make for a good read.
For our articles: https://pixelexit.com/threads/2-2-9-style-updates.14269/ we have some simple CSS which helps reduce the page down:
Code:[data-template="thread_view_type_article"] .p-body-main { max-width: 1024px; margin: 0 auto; }
Not sure if that's something you'd want to do. You could also just increase the font-size + line-height a little:
Code:.message.message--article .bbWrapper { font-size: 18px; line-height: 1.7; }
.message.message--article .message-attribution {
display: none;
}