Next/prev posts

Posted in: Newspaper
Post count: 39

How do i change the look of Next/Previous posts at the end of the articles? Which classes/files should I change? I want the next and previous to look like this: http://bit.ly/1Wtq16F

Thank you.

Post count: 22421

Hello,

In order to modify the next and prev posts like the example, you will have to replace this function: http://screencast.com/t/CjkDD569 with this one: http://pastebin.com/h5NRAF0f
And then use this custom css in the theme panel -> custom css box:
.customprev{
background-color:yellow;
font-size:20px;
color:black;
text-align:center
}
.customnext{
background-color:yellow;
font-size:20px;
color:black;
text-align:center
}

Result: http://screencast.com/t/WbsnC3xBYmF6

Thank you!

Post count: 39

Wow brilliant, thanks bogdan! Now I just need to make the buttons actually clickable. Any idea how to do that?

Post count: 22421

Hi,
In order to do that you will need to change things up. Use this function instead:
http://pastebin.com/k7FC7sqa
And this css:
.customprev a{
background-color: yellow;
font-size: 20px;
color: black;
text-align: center;
text-align:center;
padding:10px
}
.customnext a{
background-color:yellow;
font-size:20px;
color:black;
text-align:center;
padding:10px;
}

It will need further css adjustments though.
Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.