How do I change the color of the "read more" button?

Posted in: Newspaper
Post count: 1

I’m using your Craft import version and want to change the color of the read more button, which is currently an aqua color. Thank you.

Post count: 35449

Hi,
That it is an background image and is coming from the demo with custom css
If you want you can use this code to change the color ->
.td-craft-ideas .td-read-more a, .td-craft-ideas .more-link-wrap a {
background-color: blue!important;
background-image: none;
}

The custom css needs to be set in the theme panel> custom code> custom css.
Now, in case that you want to set another background image, then you can try this custom code:
.td-craft-ideas .td-read-more a, .td-craft-ideas .more-link-wrap a {
background-color: transparent !important;
background-image: url(images/read-more-bg.png);
color: #fff !important;
}

I hope this will help you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.