Would it be possible to get an code that will remove the lines that Separates the boards in the Categories please .
I would like the borders around the Category to stay but the line inside the category that is Seperating the boards only to be removed.
Hi,
Quick check. The categories are separated from one another?
Hi,
Quick check. The categories are separated from one another?
Hi Ross.
You how the category holds the boards and say one is (Forum News) and your second board is (General Talk) there is a line that separates those two boards from each other and the line that also separate the last post. Those are the lines if possible i would like to remove please. But the outside lines (that's around the category i would like those to stay). If it can't be done its cool.
I think I get what you mean. Give this a try in the main footer![]()
Code: JavaScript
- <script type="text/javascript">
- var tbody = get('tbody', TAG);
- for(t=0; t<tbody.length; t++) {
- if(tbody[t].className == 'board_holder') {
- tbody[t].parentNode.cellSpacing = '0';
- tbody[t].parentNode.style.border = '1px solid #336699';
- }
- }
- </script>
Replace 336699 with your border color![]()
Thank you Ross it is what i wanted and the code works fine thanks again.