Hello,
Sorry but the smart list pagination does not have any settings to change the position. The buttons on smart list 6 can be increased using this css code:
.td_smart_list_6 .td-smart-list-button{
padding: 18px 50px!important;
font-size: 26px;
}
You can change the font size and padding in the code and then place it in the theme panel under the custom code section.
Thank you!
Please provide a link to your site so I can inspect it.
The ! warning is the use of important warning and it can be ignored. A big red x is the one that break the code so if you have a red x in your custom css, then please check the code that causes it as no other css after that will work.
Thank you!
Hi,
So something like this – https://www.screencast.com/t/VrRWW9GdO
Making small customizations such as this one is possible with the browser inspector tool, as mentioned in this guide
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
In this case the code would look like this
.td-smart-list-button {
background-color: #4db2ec;
}
.td-smart-list-button:hover {
background-color: #000;
}
Thanks