Topic: User/post gap. Resize?

Well, i don't know how to describe it, but i'm talkin' about this:

http://tinypic.com/k4a34g.jpg

Where do i find, and change the width of this section?

2 (edited by Elzar 2006-01-13 16:10)

Re: User/post gap. Resize?

base.css

'BORDER-LEFT-WIDTH: 18em;'

Re: User/post gap. Resize?

That didn't help...?

It just seemed to remove the border on the right?!

4

Re: User/post gap. Resize?

Change the 18em to 16/17/19/20 etc

5

Re: User/post gap. Resize?

Elzar: thats only half the answer.

What you are look for is this is base.css

/* 7.1 This is the basic structure. */

DIV.postleft, DIV.postfootleft {
    FLOAT:left;
    WIDTH: 18em;
    OVERFLOW: hidden
}
    
DIV.postright, DIV.postfootright {
    BORDER-LEFT-WIDTH: 18em;
    BORDER-LEFT-STYLE: solid
}

You have to change the width setting in the first ruleset and the border-left-width in the second ruleset. They both have to have the same value.