inherit
188652
0
May 2, 2016 13:56:48 GMT -8
laura12
8
January 2013
laura12
|
Post by laura12 on May 15, 2013 9:33:28 GMT -8
yearstoremember.proboards.com/heres my forum that i'm working on bringing back, I want to remove the white "board" text that are underneath my category titles. Is there a code, or can someone tell me how to do that?
|
|
inherit
141770
0
Feb 7, 2024 16:43:54 GMT -8
Decadence
Bless the Fallen.
283
June 2009
starsfall2
|
Post by Decadence on May 15, 2013 10:26:00 GMT -8
Removing Column Headers:
Go to your Admin Area > Themes > Layout Templates > Board > Board List, and delete this chunk of code:
<quote><thread> <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> </thead> </quote>
|
|
inherit
141770
0
Feb 7, 2024 16:43:54 GMT -8
Decadence
Bless the Fallen.
283
June 2009
starsfall2
|
Post by Decadence on May 15, 2013 10:26:51 GMT -8
I recommend using ctrl F and typing in <th class"icon or typing in threads to find the section you need.
|
|
inherit
188652
0
May 2, 2016 13:56:48 GMT -8
laura12
8
January 2013
laura12
|
Post by laura12 on May 15, 2013 13:28:48 GMT -8
oh thank you so much!
|
|
inherit
141770
0
Feb 7, 2024 16:43:54 GMT -8
Decadence
Bless the Fallen.
283
June 2009
starsfall2
|
Post by Decadence on May 15, 2013 13:52:25 GMT -8
No problem. =]
|
|
inherit
124005
0
Jul 13, 2015 7:22:02 GMT -8
Panda
98
May 2008
blessing3
|
Post by Panda on May 18, 2013 23:28:06 GMT -8
Hi,
I know this have been resolved already, but I was wondering...is there a way to remove the columns for Threads and Topics? Because the column headers are gone but the part where the threads and posts counts still appear.
Thanks!
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on May 19, 2013 1:55:15 GMT -8
Hi, I know this have been resolved already, but I was wondering...is there a way to remove the columns for Threads and Topics? Because the column headers are gone but the part where the threads and posts counts still appear. Thanks! To remove those columns do the following: Admin > Themes > Layout Templates > Board List (the tab). Scroll down slightly to lines 33 and 34, you should see: <td class="threads">{if $[board.threads] == -1}N/A{else}$[board.threads]{/if}</td> <td class="posts">{if $[board.posts] == -1}N/A{else}$[board.posts]{/if}</td> Add <!-- to the start and --> to the end, so it becomes: <!--<td class="threads">{if $[board.threads] == -1}N/A{else}$[board.threads]{/if}</td> <td class="posts">{if $[board.posts] == -1}N/A{else}$[board.posts]{/if}</td>--> Click save
|
|
inherit
124005
0
Jul 13, 2015 7:22:02 GMT -8
Panda
98
May 2008
blessing3
|
Post by Panda on May 19, 2013 5:50:08 GMT -8
Hi, Thanks for the fast reply. I did what you told me and it worked but the thing is, the cells for old/new topic stretched (I guess to accommodate the missing cells?) Here is a picture: If anything, I'd prefer for the cells in the middle to take up the missing space. If you could help me with that, I'd really appreciate it.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 19, 2013 9:41:42 GMT -8
Hi, Panda. What's the link to your forum?
|
|
inherit
124005
0
Jul 13, 2015 7:22:02 GMT -8
Panda
98
May 2008
blessing3
|
Post by Panda on May 19, 2013 9:55:16 GMT -8
Hey, I PM'd you with the link
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on May 19, 2013 12:21:48 GMT -8
Hi, Thanks for the fast reply. I did what you told me and it worked but the thing is, the cells for old/new topic stretched (I guess to accommodate the missing cells?) Here is a picture: If anything, I'd prefer for the cells in the middle to take up the missing space. If you could help me with that, I'd really appreciate it. All you need to do is go to Admin > Themes > Advanced Styles & CSS > Style Sheet. Now go to roughly lines 851 - 854, and you should see: .boards .main { width: 59%; text-align: @ board_align_main; } .boards .threads { width: 9%; text-align: @ board_align_threads; white-space: nowrap; } .boards .posts { width: 8%; text-align: @ board_align_posts; white-space: nowrap; } .boards .latest { width: 20%; text-align: @ board_align_last_post; } Change the blue to any percentage you want.. Just increase it by the amount you just got rid, of, so the threads + posts (9% + 8%). So change the blue from 59 to 76%
|
|
inherit
124005
0
Jul 13, 2015 7:22:02 GMT -8
Panda
98
May 2008
blessing3
|
Post by Panda on May 19, 2013 21:31:42 GMT -8
Hi Stinky666, Thanks for the help, it worked! You guys are awesome!
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on May 19, 2013 23:37:00 GMT -8
Hi Stinky666, Thanks for the help, it worked! You guys are awesome! No worries.
|
|