imagy
November 19, 2023, 12:33am
1
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?
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.
imagy
November 20, 2023, 8:51am
5
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
imagy
November 20, 2023, 9:13am
7
Perfect, I appreciate it very much. Thanks for your help. It looks awesome now.
1 Like