You may let me know what the other two files are doing?
I have changed only bbcode > Renderer > Html.php
There are also
bbcode > Renderer > EditorHtml.php and
Html > Renderer > BbCode.html
both i have not changed till now, because i dont know where or when they are used for.
Here is some css for that:
	
	
	
		
For me this enough now, but for shure we could add many more nice things here.
				
			I have changed only bbcode > Renderer > Html.php
There are also
bbcode > Renderer > EditorHtml.php and
Html > Renderer > BbCode.html
both i have not changed till now, because i dont know where or when they are used for.
Here is some css for that:
		Code:
	
	// to show va=top, if .vt is set
.bbTable .vt td {
    vertical-align:top;
}
// to show one cell per row
.bbTable .w25 td, .bbTable .w33 td, .bbTable .w50 td {
    width: 100%;
    display:block;
    margin-bottom: 1px;
}
// To show a table with cols > 1 from 533px
@media only all and (min-width:533px) {
    .bbTable .w25 td, .bbTable .w33 td, .bbTable .w50 td {
        display:table-cell;
    }
   
    .bbTable .w25 td {
        width: 25%;
    }
    .bbTable .w33 td {
        width: 33%;
    }
    .bbTable .w50 td {
        width: 50%;
    }
}
	For me this enough now, but for shure we could add many more nice things here.