just another quick question – how do I change the color of the next / previous post button?
It’s the button that appears at the bottom of a post once you have clicked ‘Read More’ and has an arrow next to the title. Currently the color is set to a light grey – #f9f9f9
@BlackWidow To change the color of the next / previous post button Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS and paste the following CSS code:
ul.default-wp-page li a {
background-color: #F9F9F9;
border: 1px solid #EAEAEA;
}
Note: Change above HEX color code F9F9F9 for background-color and EAEAEA for border.
Now, Click on Save All Changes Button and Refresh your browser.