Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I have the Vantage theme and have the Post Loop Widget that shows a list of 3 posts. At the bottom it shows a next button and small buttons for each page with more posts. How do I change the color of these buttons?
Hi Henrik
Add the following in Appearance > Custom CSS and adjust the color values:
//The page number and next/previous buttons. .pagination span, .entry-content .pagination span, .pagination a, .entry-content .pagination a { background: #ffffff; color: #646464; } //The page number and next/previous buttons hover state. .pagination a:hover, .entry-content .pagination a:hover { background: #f0f0f0; color: #606060; } //The currently selected page number button. .pagination .current, .entry-content .pagination .current { background: #333333; color: #efefef; }Thanks! Works perfect!
Great! Glad to help! :)