DirtRider

Registered
If you reduce the size of your browser window to a square the forum alignment is off

styleproblem.jpg
 
Kind of picky with the dual column layout with various setups. Two things you could do...

Style Properies -> Responsive Design -> Wide Width increase it to like 970px

Or try this in extra.css:

Code:
@media (max-width:970px)
{
   .node .nodeInfo.primaryContent, .node .nodeInfo.secondaryContent { min-height: 75px; }
}
@media (max-width:@maxResponsiveWideWidth)
{
   .node .nodeInfo.primaryContent, .node .nodeInfo.secondaryContent { min-height: 0px; }
}

First option basically collapses the sidebar(and other smaller things happen) at that width.

Second option would make the nodes higher to prevent that.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back