Nothing big here, but helpful if you believe your pagination on social channels pages to be too small..
by default the size is small at 0.78em
Add this to your Design Studio custom CSS to make it larger (change 2 to whatever size you like):
div#feedListPagination.pagination {font-size:2em;}
Let me know if you need help with any aspect of your Ning Community
Replies
Here is what I use for mine, the code reveals the next and previous words which are part of the buttons so makes it easy to press them on phones etc
https://jr-images.ning.com/katkam-social-channelhttp://
/* Pagination on pages, shows the words next previous*/
#feedListPagination.pagination .icon{ display:inline!important; }
#feedListPagination.pagination .icon-next::before{ display:none }
#feedListPagination.pagination .icon-next::after {
content: "";
}
#feedListPagination.pagination .icon-next::after {
font-family: "ning-icon-fonts";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
display: inline-block;
margin-left: 0.5em;
}
#feedListPagination a.pagination-previous{ margin-right:10px}
#feedListPagination a.pagination-next{ margin-left:10px }
#feedListPagination a.pagination-previous:hover{text-decoration:none}
#feedListPagination a.pagination-next:hover{text-decoration:none}
#feedListPagination .pagination .is-disabled{ display:none }
#feedListPagination{ margin-top:15px }
sweet...love it! thanks Biz!