Alloy "Recent Posts" - change font colour of summary?!

Hi there,

is there a way to change the colour of the summary in Alloys Recent Posts stack?

Mine looks like this now:

I want the summary in white colour as well. Not muted.

There are no options for that in the stack so maybe someone could pass me a little html or css snippet in order to fix it (I am not good in coding, that’s why I use RW…).

Thanks,
Magnus.

Should be easy with css. Link to site please?

Thanks for checking :slight_smile:

It looks like you have disabled right mouse click on that page. Can you enable it?

This makes digging out the CSS a lot easier.

Oh yes I did. Sorry I didn’t think of it. It is enabled now.

1 Like

Add this to your page, or site-wide CSS code window…

 .recent-posts {
color: #ffffff;
}

Change the colour hex code to whatever you want.

If that doesn’t work on the live site, change it slightly to this…

 .recent-posts {
color: #ffffff !important;
}
2 Likes

:+1:t4:

Perfect, I appreciate it very much. Thanks for your help. It looks awesome now.

1 Like