Topic: CSS Parse error fix
Hello everyone
Just a quick fix for anyone finding their PunBB forum CSS doesn't validate .. with the following:
Line: 26 Context : .pun .clearer, .pun .nosize
Parse Error - [empty string]
If you just change the following lines in /style/imports/base.css :
/* 2.1 Clearing floats and invisible items */
.pun .clearer, .pun .nosize {
HEIGHT: 0;
WIDTH: 0;
LINE-HEIGHT: 0;
FONT-SIZE: 0;
OVERFLOW: hidden
}
to:
/* 2.1 Clearing floats and invisible items */
.pun .clearer, .pun .nosize {
height: 0px;
width: 0px;
line-height: 0px;
font-size: 0px;
overflow: hidden;
}
It'll validate.
;-)