MyBB Community Forums

Full Version: Removing only vertical borders in threadlist page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here I am again Toungue I've been changing a lot of the templates but I'm stuck with something. I would like to remove the vertical borders in the thread view page. I have a screenshot below. I would like to get rid of all the borders that have a red paint added to it.

[Image: forum.jpg]

Is this even possible, to only have them horizontal? Because I think the forum view is very cluttered with both vertical and horizontal borders.

Thanks for any help Smile
Bumping up the very old thread,
I also need to remove only vertical lines from threadlist template.
plz help.

Example.
[Image: 001xbm.jpg]
Open global.css file that is used by your current forum theme and find the ine where table tag is styled and add:
border-spacing:0px 1px;


(this is table style from default theme)
table { 
color: #000000;
font-family: "Verdana", "Arial", sans-serif;
font-size: 13px;
}

If you want to apply border spacing on forumdisplay add another class in table tag in forumdisplay_treadlist (eg forumdiplsay) and in global.css add

.forumdisplay {
border-spacing:0px 1px;
}

and save it.
Johnny S, Thank you very much. Smile