Hi there!
How do I edit the look of the Next Post / Previous Post button that shows up on blog posts? Specifically, I’d like to:
1. Change the color of it (for both when someone hovers over it and in its natural/start state)
2. Change the font to Helvetica
3. Make the font a little bigger
Thanks!
Hi alexmasica!
Please add following code to Quick CSS
#top .avia-post-nav { background: rgba(0,255,0,0.6); font-family: helvetica; font-size: 16px; }
#top .avia-post-nav:hover { background: rgba(0,0,255,0.8); }
Regards,
Yigit
Thanks, that’s perfect!