How to change color of the Previous/Next element?

I set the blog as my home page and on each page, I allow 10 posts to display. If there’s more posts, at the bottom of the page, there’s the “Previous” and “Next” button to flip on to the next/previous page of another 10 posts. By default, the color of those two buttons seem to be transparent/white since I am not able to change them by modifying any of the Element/Topology colors.

How to change them to other colors please? For example, to match the color of the “Read more” element.

My site is here: http://betweenplaces.net

Thanks!
–Annie

Hi Annie,

I hope you are well today and thank you for your question.

You can try changing the colors of those buttons by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Travelify Other Options

#content ul.default-wp-page li a {
    background: #7a7a7a;
    color: #fff;
    border-radius: 2px;
    border-color: #7a7a7a;
}

Best Regards,
Movin