1 (edited by wipe 2006-03-23 11:05)

Topic: Smaler namebar.

Hi.
I should want to have the bar where the name, avatar, postcount are shown.
Now its around 200px and i should want to have it around 140px. Is it possible?


http://img52.imageshack.us/img52/4039/kans9cw.jpg

2 (edited by gil 2006-03-23 14:20)

Re: Smaler namebar.

Maybe the width of the postleft div in base.css?

DIV.postleft, DIV.postfootleft {
    FLOAT:left;
    WIDTH: 18em;
    OVERFLOW: hidden
}
--> try a width of 13em or 12em

(can be erroneous: it's the first time I look into the punbb css files)

Re: Smaler namebar.

if you edit the base.css all your styles will be changed.

add this to you *.css style.

DIV.postleft, DIV.postfootleft {width:140px;}
DIV.postright, DIV.postfootright {border-left-width: 140px}

4

Re: Smaler namebar.

Gizzmo wrote:

if you edit the base.css all your styles will be changed.

add this to you *.css style.

DIV.postleft, DIV.postfootleft {width:140px;}
DIV.postright, DIV.postfootright {border-left-width: 140px}

Thanks!