It would be great if you could add....
Code:body { max-width: 1280px; }
to the CSS file included in the XenForo theme you use.
@media (min-width: 1200px) {
.nodeLastPost {
width: 390px !important;
}
}
Unfortunately, I'm a bit limited in what I actually can do directly with the CSS. What I have found is that this theme offers a lot of configuration ability, but screw with it manually and you break other stuff...Much better on my mobile devices and desktop computers. Thanks.
Regarding the "Last Post" content blocks, you may want to use the following CSS code:
This will overwrite the width on all desktop monitors and laptop displays that are at least 1200 pixels wide without altering the layout on mobile screens. (Mobile devices with high-DPI screens internally divide the actual display resolution by a factor of 2 or 3, so they won't be affected. This is why whyzzat.com's layout elements are identical in size on Retina and non-Retina iPads, for instance.)Code:@media (min-width: 1200px) { .nodeLastPost { width: 390px !important; } }
Unfortunately, I'm a bit limited in what I actually can do directly with the CSS. What I have found is that this theme offers a lot of configuration ability, but screw with it manually and you break other stuff...
Silly shit is locked down so tightly that I don't even find a single .css file on the server.