Add this to the
extra.less
template to show them online on all screen widths:
Less:
.node-description
{
display: block !important;
}
If you want them to show inline on mobile only, use this:
Less:
@media (max-width: @xf-responsiveMedium)
{
.node-description
{
display: block !important;
}
}