Unite Theme - Continue Reading Button Color Change

Hi there,

I tried using a few code through the search, but it doesn’t seem to help with this particular theme.

I managed to change all of the colors, however, the “Continue Reading” button is still displayed in purple.

Any assistance would be greatly appreciated.

Website

Tried:

.btn.btn-default.read-more {
background: #ffffff;
border-color: #fd6da0;
color: #fd6da0;
}

Didn’t work.

Hi @ichiyo,

You can try adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

a.more-link {
  color: #fd6da0;
  border-color: #fd6da0;
}
a.more-link:hover {
  background-color: #fd6da0;
  color: #fff;
}

Best Regards,
Movin

Thank you!

You are most welcome here :slight_smile: