Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Top 20 & table padding

Quote Reply
Top 20 & table padding
Is it possible to display Top 20 instead of Top 10 on the Top Rated page?

How can I alter table padding on the Top Rated page and also Reviews (they look a little squashed up)?

Thanks again.
Quote Reply
Re: [MJB] Top 20 & table padding In reply to
Sorted padding out after a little guess work. Any ideas how to change Top 10 to Top 20?
Quote Reply
Re: [MJB] Top 20 & table padding In reply to
Unfortunately, that value is hard coded in the code. You can change it, but your change will be overwritten on the next upgrade (or possibly update). You can make the change in admin/Links/Build.pm, around line 448:
Code:
$links->select_options("ORDER BY Rating DESC", "LIMIT 10");
...
$links->select_options("ORDER BY Votes DESC", "LIMIT 10");
Just change 10 to 20. Remember to also update your templates.

I'll add this to our todo list to make it an option.

Adrian
Quote Reply
Re: [brewt] Top 20 & table padding In reply to
OK, I'll leave it "as is" then for the time being.

Thanks.