By using this site, you agree to our Privacy Policy and our Terms of Use. Close

Like in this topic http://gamrconnect.vgchartz.com/thread.php?id=233685

Current CSS at gc-forums.css:

.post-body {
    font-size: 14px!Important;
    color: #4b4b4b !important;
    line-height: 120%;
    font-family: 'Calibri', 'Trebuchet MS','Arial','Helvetica','sans-serif';
}

I don't know the reasoning of that implementation, like if .post-body is used somewhere else that requires its line height to be in % or it messes its style up (trying to vertically center a text with it). But here is a solution you might want to consider:

Just use decimal:

.post-body {
    font-size: 14px!Important;
    color: #4b4b4b !important;
    line-height: 1.2;
    font-family: 'Calibri', 'Trebuchet MS','Arial','Helvetica','sans-serif';
}

 

Last edited by Edellus - on 18 December 2017