Remove Voting Bars in Top Posters Widget?
4 posters
Page 1 of 1
Remove Voting Bars in Top Posters Widget?
I find the voting bars extremely unnecessary in the top posters widget and would rather it just show usernames and post counts.
Is there any way I can remove the voting bar from the top posters widget? If this isn't possible, could I instead use the create a new widget function to have an automatic-updating list of the top ten posters and their post count?
If we cannot do the first option yet the second option is possible, I would need assistance with the coding for that.
Thank you for anyone's help!
My forum link: http://websoup.forumotion.com/
Is there any way I can remove the voting bar from the top posters widget? If this isn't possible, could I instead use the create a new widget function to have an automatic-updating list of the top ten posters and their post count?
If we cannot do the first option yet the second option is possible, I would need assistance with the coding for that.
Thank you for anyone's help!
My forum link: http://websoup.forumotion.com/
Re: Remove Voting Bars in Top Posters Widget?
Thanks, that worked! Would you be able to help me with this issue of my forum widgets colliding with the side of my forum?
Also, there was a "table" in this widget before, the usernames and post count in () being in the left column, and the voting bar being in the right column. How could I keep this table but move the post count over in place of the voting bar that was originally in the right column? (I can revert the template back to normal if needed, that way we can start with the base.)
Please and thank you! I tried fiddling around in the ACP to fix these issues on my own, but ultimately could not find a solution!
Re: Remove Voting Bars in Top Posters Widget?
Add this to your CSS.
That should fix the issue with it touching the other element.
- Code:
#content-container > table > tbody > tr > td:nth-child(3) > table:nth-child(3),
#content-container > table > tbody > tr > td:nth-child(3) > table:nth-child(5) {
margin-left: 8px;
}
That should fix the issue with it touching the other element.
Re: Remove Voting Bars in Top Posters Widget?
Draxion wrote:Add this to your CSS.
- Code:
#content-container > table > tbody > tr > td:nth-child(3) > table:nth-child(3),
#content-container > table > tbody > tr > td:nth-child(3) > table:nth-child(5) {
margin-left: 8px;
}
That should fix the issue with it touching the other element.
Ugh thank you so much! It looks so much better now!
Still needing some advice on the table formatting for the "top posters" widget -- I would like to keep the table format, but remove the voting bars and replace them with the # of posts the user has! This would require moving the number over from column 1 to column 2.
Re: Remove Voting Bars in Top Posters Widget?
You're very welcome.
I can already see the voting bars removed though.
I can already see the voting bars removed though.
Re: Remove Voting Bars in Top Posters Widget?
The voting bars are removed, yes, somebody helped me with that! It unfortunately removed the table though, too, and I decided I'd like to keep that and just move the post number over in place of where the voting bar originally was. If it can be done, at least!
Re: Remove Voting Bars in Top Posters Widget?
Nope, I mean the table that's given in the default value:
Re: Remove Voting Bars in Top Posters Widget?
put again the default template to have the widget as it was ..and then remove the section i mentioned above to remove the bars
now you want to delete the numbers?
now you want to delete the numbers?
Re: Remove Voting Bars in Top Posters Widget?
I reset it to default value.
What I want is to keep the table: I want usernames in the left column, as they already are, but I want the post count moved to the right column in place of the voting bars. And obviously remove the parentheses that are around the post count if possible.
What I want is to keep the table: I want usernames in the left column, as they already are, but I want the post count moved to the right column in place of the voting bars. And obviously remove the parentheses that are around the post count if possible.
Re: Remove Voting Bars in Top Posters Widget?
It's the default value:
- Code:
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td class="catLeft" height="25"><span class="genmed module-title">{L_TOP_POSTERS}</span></td>
</tr>
<tr>
<td>
<table summary="{L_TOP_POSTERS}" width="100%">
<!-- BEGIN POSTER -->
<tr>
<td class="{POSTER.ROW_CLASS} genmed" width="1%">{POSTER.NAME}</td>
<td class="{POSTER.ROW_CLASS}" nowrap="nowrap" title="{POSTER.NB_POSTS}">{POSTER.BARRE}</td>
</tr>
<!-- END POSTER -->
</table>
</td>
</tr>
</table>
Re: Remove Voting Bars in Top Posters Widget?
Try this:
- Code:
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td class="catLeft" height="25"><span class="genmed module-title">{L_TOP_POSTERS}</span></td>
</tr>
<tr>
<td>
<table summary="{L_TOP_POSTERS}" width="100%">
<!-- BEGIN POSTER -->
<tr>
<td class="{POSTER.ROW_CLASS} genmed" width="1%">{POSTER.NAME}</td>
<td class="{POSTER.ROW_CLASS}" nowrap="nowrap" title="{POSTER.NB_POSTS}"></td>
</tr>
<!-- END POSTER -->
</table>
</td>
</tr>
</table>
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Remove Voting Bars in Top Posters Widget?
I tried it -- unfortunately all it did was remove the voting bar images.
Re: Remove Voting Bars in Top Posters Widget?
Did the table remain?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Remove Voting Bars in Top Posters Widget?
After testing somethings out, I believe the username and number is combined into one variable. They are not separate variables.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» Resetting 'Top Posters' sidebar widget?
» How to I remove Today's Top 20 Posters?
» Avatar in: Top posters, all Top posting and Most active topic starters Widget
» How to remove an existing widget?
» Widget remove from posts view and signature width problem
» How to I remove Today's Top 20 Posters?
» Avatar in: Top posters, all Top posting and Most active topic starters Widget
» How to remove an existing widget?
» Widget remove from posts view and signature width problem
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum