inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 12, 2020 9:39:09 GMT -8
Hi How can I eliminate the folder to the left if each category Thanks!
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Sept 12, 2020 12:22:04 GMT -8
Hi pitszal If you want to remove the folder icons that appear to the left of each board in the boards list in the various categories on the Home page, a very easy way to do that is to add a modification at the bottom of your Style Sheet for the theme. To remove the folder images and leave the cells in that column empty, add this: /* Modification to remove folder icons from Boards list of Categories */ .container.boards td.icon img{ display:none; } /*End of Section */ To remove the folder images and eliminate that column, use this instead: /* Modification to remove Icon column from Boards list of Categories */ .container.boards th.icon, .container.boards td.icon{ display:none; } /* End of Section */ Please let me know if this gets you where you want to go.
|
|
inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 12, 2020 14:29:21 GMT -8
Hi Retread Yes it did and thank you so much. I have 1 more question how can I eliminate the text Board/Threads/Posts/ Last post and the #'s underneath them How Can I just have the time stamp and the user name and not the name of the posts?
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Sept 12, 2020 17:02:18 GMT -8
I have 1 more question how can I eliminate the text Board/Threads/Posts/ Last post and the #'s underneath them How Can I just have the time stamp and the user name and not the name of the posts? pitszal , the column headings serve an important purpose. For people less familiar with forums, they make it more clear what's in those columns. Removing the name/link to the most recent thread removes a convenient way to navigate. Because of this, I've separated the modifications into 3 separate sections. The first seems rather benign to me. What it removes isn't terribly important information. Add the second and/or third modifications if you like, although I would recommend against them. /* Modification to remove Threads column and Posts column from Boards list of Categories */ .container.boards th.posts, .container.boards td.posts, .container.boards th.threads, .container.boards td.threads{ display:none; } /* End of Section */ /* Modification to remove ROW containing ALL Table Headings from Boards list of Categories */ .container.boards table:first-of-type tr:first-of-type{ display:none; } /* End of Section */ /* Modification to remove thread title link from Last Post column of Boards list of Categories */ .container.boards td.latest.last a.js-thread__title-link, .container.boards td.latest.last br:first-of-type{ display:none; } /* End of Section */
|
|
inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 13, 2020 5:07:30 GMT -8
Hu First I would like to thank you for your very appreciated help. It all started because I was trying to make a new theme and I messed up the whole board You are a life saver and I can't thank you enough. I do have a few more Question's. How do I eliminate the section in green? This is a board category that somehow went to the left side instead of with the other ones. How do I change the color of the member names on the main Paige Thanks again Retread
|
|
inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 14, 2020 3:41:42 GMT -8
Hi Bob I appreciate your input believe it or not I am doing ok. I have gotten my board to about 90% the way I want it to be. I have had this forum for over 10 years. You are probably saying why doesn't she know, what she is doing by now. People have things going on in their life that are problematic like the death of a husband, ( a year ago) Isolation due to covid so the mind get's clouded. I must say that some of the members here are downright rude and condescending not all though some are helpful and mean well. The admins have been very helpful. Hopefully someone/admin can help me instead of giving me a lecture. (not you). Thanks again Bob for your input
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Sept 14, 2020 7:29:45 GMT -8
How do I eliminate the section in green? Removing the first row of the Stats would be difficult with CSS. There might be a way of targeting just that row, but if there is, it's beyond my skills. You'll need to make a modification to your Home layout template. From your Admin panel, navigate: Admin Home> Themes> Layout TemplatesSelect the desired theme from the dropdown to the right of Current ThemeClick on HomeCopy the entire contents of the Home layout template to a Notepad file and save the file. This ^ is an important step because I don't know if your template is currently stock or if it has modifications.I've prepared a stock Home layout template with the portion that creates the first row (line 31 through line 67) commented out. <!-- --> Replace the contents of your Home layout template with this:
$[news] {foreach $[category]} $[category.anchor] <div class="container boards"> <div class="title-bar bbcode"><h2><div class="title_wrapper">$[category.display_name]</div></h2></div> <div class="content cap-bottom"> $[category.board_list] </div> </div> {/foreach} {if $[legend]} <div class="container legend"> <div class="title-bar"><h2>Legend</h2></div> <div class="content"> <table> <tr> {foreach $[legend]} <td>$[legend.icon] <span>$[legend.name]</span></td> {/foreach} </tr> </table> </div> </div> {/if} {if $[show_stats]} <div class="container stats"> <div class="title-bar"><h2>Forum Information & Statistics</h2></div> <div class="content"> <table> <tbody> <!-- <tr> <td> <table> <tr> <td class="icon">$[image.stats]</td> <td class="info"> <table> <tbody> <tr><th>Threads and Posts</th></tr> <tr><td>Total Threads: $[total_threads] Total Posts: $[total_posts]</td></tr> {if $[last_updated_thread]}<tr><td>Last Updated: $[last_updated_thread.recent_link] by $[last_updated_thread.last_post.created_by] ($[last_updated_thread.last_post.created_on])</td></tr>{/if} <tr><td>$[recent_threads_link] - $[recent_posts_link]{if $[rss_feed_link]} - $[rss_feed_link]{/if}{if $[mark_boards_read_link]} - $[mark_boards_read_link]{/if}</td></tr> </tbody> </table> </td> </tr> </table> </td> <td> <table> <tr> <td class="icon">$[image.members]</td> <td class="info"> <table> <tbody> <tr><th>Members</th></tr> <tr><td>Total Members: $[total_members]</td></tr> <tr><td>Newest Member: $[newest_user]</td></tr> <tr><td>Most Users Online: $[most_users_online] <span class="small">($[most_users_online_date])</span></td></tr> <tr><td>$[birthdays_today_link]</td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> --> <tr> <td colspan="2"> <table> <tr> <td class="icon">$[image.online]</td> <td class="info last"> <table> <tbody> <tr><th>Users Online</th></tr> <tr><td>$[total_staff_online] Staff, $[total_members_online] Member{if $[total_members_online] != 1}s{/if}, {if $[view_guests_online_link]}<a href="#" class="$[view_guests_online_link.class]">{/if}$[total_guests_online] Guest{if $[total_guests_online] != 1}s{/if}{if $[view_guests_online_link]}</a>{/if}.</td></tr> <tr><td> {foreach $[online_user]} $[online_user]{if $[online_user.invisible]} <span class="small">(invisible)</span>{/if}$[online_user.comma] {/foreach} {if $[total_online_not_shown]} , and <a class="$[view_active_members_link.class]" href="$[view_active_members_link.href]">$[total_online_not_shown] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> <tr class="last"> <td colspan="2"> <table> <tr> <td class="icon">$[image.online_24]</td> <td class="info last"> <table> <tbody> <tr><th>Users Online in the Last 24 Hours</th></tr> <tr><td>$[total_staff_online_24] Staff, <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_members_online_24] Member{if $[total_members_online_24] != 1}s{/if}</a>, $[total_guests_online_24] Guest{if $[total_guests_online_24] != 1}s{/if}.</td></tr> <tr><td> {foreach $[online_user_24]} $[online_user_24]{if $[online_user_24.invisible]} <span class="small">(invisible)</span>{/if}$[online_user_24.comma] {/foreach} {if $[total_online_not_shown_24]} , and <a class="$[view_todays_active_members_link.class]" href="$[view_todays_active_members_link.href]">$[total_online_not_shown_24] more...</a> {/if} </td></tr> </tbody> </table> </td> </tr> </table> </td> </tr> </tbody> </table> </div> </div> {/if}
Then click the Save Changes button at the bottom of the page or the Save Theme button near the top. This is a board category that somehow went to the left side instead of with the other ones. I won't be able to help you with this as I can't view your forum. Also, we're moving far away from the original issue of removing elements from the Home page. How do I change the color of the member names on the main Paige The member names (for regular members) on the Home page will be the same as any link on the Home page. To change color of links, From your Admin panel, navigate: Admin Home> Themes> Advanced Styles & CSS remain on the Visual Editor tab. Select the desired theme from the dropdown to the right of Current Theme. Click on Body (Content). That section will expand. Click on Containers. That section will expand. Click on Content Area Containers. That section will expand. Click on Text. That section will expand. Click on Links. That section will expand. Use the color selector to the right of Text Color and adjust to the desired color. Then click OK. Then click the Save Changes button at the bottom of the page or the Save Theme button near the top. The name color for members who are in Groups is handled in the Member Groups section of your admin panel. I see you already have a thread for that on the Support Board so I won't address that here.
|
|
inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 15, 2020 10:26:23 GMT -8
Hi Retread On top of my headers I noticed a word in Black that reads: "PITSZAL & PAL'S" in large bold letters Can that be removed? Thanks. pitszal.freeforums.net/
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Sept 15, 2020 12:11:47 GMT -8
pitszal, your forum Login & Navigation is set to Guests Must Login. Without being able to view the forum, I have no idea where the text you mentioned is.
|
|
inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 15, 2020 15:41:41 GMT -8
Ok I think you might be better if you join my forum this way you can see everything, You can always delete yourself if you wish I have 2 things that lead me to the home page 1. The link "Home" 2 The black "Pitszal & Friends" I would like to eliminate the Text in Black above the link Home
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Sept 16, 2020 4:46:42 GMT -8
From your Admin panel, navigate: Admin Home> Themes> Theme Manager> Theme Settings. Remain on the Settings tab. Select the desired theme in the dropdown to the right of Current Theme. In the dropdown to the right of Forum Title: select Do Not Display a Title.
|
|
inherit
51420
0
May 4, 2022 3:22:33 GMT -8
pitszal
2,321
July 2005
pitszal
|
Post by pitszal on Sept 17, 2020 4:00:32 GMT -8
Thank you Retread
|
|