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.

;-)

Re: CSS Parse error fix

http://punbb.org/forums/viewtopic.php?pid=58707#p58707
It says it's fixed, but apparently it's not wink