Community Forums › Forums › Design Tips and Tricks › [Sleek Theme] Customize Single Post Pagination
Tagged: sleek pagination style
This topic contains 4 replies, has 3 voices, and was last updated by theateradvisor 3 months, 2 weeks ago.
-
AuthorPosts
-
December 6, 2012 at 10:15 pm #3658
Hi,
I’m using the Sleek Child Theme. When I use <<!–nextpage–> on an article, the post is splitten in pages and the pages are displayed.
However, I don’t like the display of the pages:
Pages: 1 2 3 4
It is too small and it lacks previous and next pages links.
How can I customize it ? The ideal would be to use the same style as the Sleek theme use for the blog page pagination. Is there a way to achieve that ?
Thanks a lot
December 12, 2012 at 10:02 pm #4861Can you please provide a link to your site so I can take a link? Thanks

Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsDecember 12, 2012 at 10:13 pm #4866Hi,
Thank you, but I finally found a way to fix the problem. I unhooked genesis_do_post_content() and replaced the call to wp_link_poages() with new parameters and customization for the style.
Baptiste
December 12, 2012 at 10:33 pm #4873I’m glad you were able to resolve the issue – I’m sorry no-one from the forum responded to your post until tonight.

Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsMarch 1, 2013 at 10:35 am #23536New solution for anyone who is looking for them. We used the following code placed at the bottom of style.css:
/*The section below styles the whole post page numbers area*/
p.pages
{
font-size:18px;
display:block;
clear:both;
padding: 3px 0 5px 5px;
}/*The section below styles the post page number links and visited links*/
p.pages a,
p.pages a:link,
p.pages a:visited,
p.pages a:active {
padding: 4px 8px !important;
margin: 3px !important;
text-decoration: none !important;
border: 1px solid #C8C8C2 !important;
background: #FCFCFC !important;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important;
color: #0088B3 !important;
}/*The section below styles the post pagination link while hovering mouse over over it*/
p.pages a:hover {
border: 1px solid #a7a7a3 !important;
color: #fff !important;
background: #0088B3 !important;
}You can adjust the font size, color etc very easily using this code, and it looks nice.
-
AuthorPosts
You must be logged in to reply to this topic.