Topic: CSS Problem, white picture

Hello boyz smile

At first I'd like to apology for my bad English, but it's not my first language smile

I've got a little problem with my punBB. In fact, I changed it, and put a new style on it that I made myself. You can see it here : http://forum.laville.be

But the problem is : look at this page : http://forum.laville.be/viewtopic.php?id=5

Everytime the message becomes too long, the white thing appears on the left. I looked into the CSS files, but I didn't find where that came from.. Got an idea?

Thank you for yous answers wink

Re: CSS Problem, white picture

Yeah, that's the postright border. The only way I found to solve it in both firefox and IE is with this in your imported theme_cs.css file:

DIV.postright, DIV.postfootright {BORDER-LEFT-COLOR: #424242}

add:

DIV.postright, DIV.postfootright {BORDER-LEFT-COLOR: #424242; border-left-width: 0;}

3 (edited by Splytte 2007-05-08 14:20)

Re: CSS Problem, white picture

Hi, thank you it works, but I proceeded another way.. I just replaced the code this way :

DIV.postright, DIV.postfootright {color: transparent;}

Thank you very much wink

Re: CSS Problem, white picture

The only way I could get it to work in both IE and firefox without alignment problems, is with an IE hack

div.postright,div.postfootright {
border-left-color: transparent;
}

* html div.postright, * html div.postfootright {
border-width: 0;
}