- This topic has 8 replies, 3 voices, and was last updated 6 years, 8 months ago by
Tradoto.
- AuthorPosts
- July 15, 2016 at 09:04 #9988
TradotoParticipantHow do i hide the SHOW box for pagination, i only have one number in there so having that box displayed makes no sense and is wasting space
July 15, 2016 at 12:33 #9993
AnonymousInactiveHello again mathieu.
if you want to delete just show box but left the previous next buttons at the end – please, insert into CSS code this #supsystic-table-61_wrapper .dataTables_length {
display: none;
}IF you want to delete everything – just switch off the option Pagination in the admin settings page of the plugin.
July 15, 2016 at 20:20 #10000
TradotoParticipantIt didnt work, this is what my custom CSS has right now, the border none works fine, not the one you gave me tho
#supsystic-table-61_wrapper .dataTables_length { display: none; } #supsystic-table-1 * { border: none; }
July 16, 2016 at 10:26 #10001
AnonymousInactiveHello Mathieu,
please, contact us through internal support. Our team will check what is wrong and will help you to solve the problem.July 19, 2016 at 21:51 #10012
TradotoParticipantNot getting any traction via support email, its been 4 days no follow up…
July 20, 2016 at 09:51 #10013
AnonymousInactiveHello mathieu. We replied in your tickets in the internal support that for solving an issue – we need the direct link to the page. where do you have your table.
July 20, 2016 at 10:21 #10014
TradotoParticipantThx but i replied already days ago saying it was here http://www.tradoto.com on the homepage
July 21, 2016 at 11:42 #10029
mila_supportMemberHello!
As we answered in tickets here is the code for you:
#supsystic-table-1 * { border: none; } #supsystic-table-1_wrapper .dataTables_length { display: none; } #supsystic-table-1_wrapper .dataTables_paginate .paginate_button, #supsystic-table-1_wrapper .dataTables_paginate .paginate_button.disabled { color: #77c84c !important; } #supsystic-table-1_wrapper .dataTables_paginate .paginate_button:hover { color: #ffffff !important; } #supsystic-table-1_wrapper .dataTables_paginate .paginate_button.current { color: #000000 !important; }
Please add this code into CSS tab of your table. It will work only for this table.
Please note that “1” in
#supsystic-table-1 *
is the id of your table. The code, which we gave you on forum earlier, didn’t work for you because it has id 61 and now we see that the id of your table is 1:#supsystic-table-61_wrapper .dataTables_length { display: none; }
Also here color:
#77c84c
you can set any other color, by using different hex code. For checking the code of colors you can use this service http://www.color-hex.com/.July 21, 2016 at 19:16 #10035
TradotoParticipantyou guys rock ! it fixed all my issues, appreciate the detailed answer ! spot on !
- AuthorPosts
- You must be logged in to reply to this topic.