inherit
245573
0
Jun 13, 2017 20:51:10 GMT -8
zachsquare
2
June 2017
zachsquare
|
Post by zachsquare on Jun 11, 2017 19:34:59 GMT -8
Hi, is there a way to remove these lines and the headers circled?? To something like this! Thanks in advance!!!!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jun 11, 2017 23:10:34 GMT -8
Hi, is there a way to remove these lines and the headers circled?? To something like this! Thanks in advance!!!! By the screen shots, looks like you removed the thread column already so what I post here to do may not look exactly like what you see but you should be able to work it out. First you need to go to your Board List template. (Admin> Themes> Layout Templates> and click on the Board List tab. Find this and comment out the tr tags like so in blue: <table class="list" role="grid"> <thead> <!--<tr> <th class="icon"></th> <th class="main">Board</th> <th class="threads">Threads</th> <th class="posts">Posts</th> <th class="latest last">Last Post</th> </tr> -->
Now scroll down to somewhere around line 38, might be a different line since you have things altered already. Find this and add the blue: <td class="posts">{if $[board.posts] == -1}N/A{else}$[board.posts]{/if} <br>Posts</td> If you want to style that "Posts" text then you'll want to do something like this: <td class="posts">{if $[board.posts] == -1}N/A{else}$[board.posts]{/if} <div class="my_posts">Posts</div></td> and then css for it at the bottom of your style sheet with of course adding whatever styles you want and not what I have in there. lol /*style the post text in boards*/ .my_posts{margin-top:3px;color:#ff0000;} Hope that helps.
|
|