-
Issue description:Text Overlapping on my posts and the read more button. Has anyone seen this?
-
Link to the page with the widget in question: https://ctphilanthropy.org/page/Copyofmembernews
1 Like
Hi there, @toby_mathew
![]()
This issue occurs because of the different spacing between the date and post texts. I’ll check with the devs if there is a way to adjust your CSS code and will update you tomorrow ![]()
1 Like
Hi there, @toby_mathew ![]()
We’ve fixed the issue using this CSS code:
.es-card-content-info::after {
content: 'Read More';
font-size: 12px;
width: 100%;
text-decoration: underline;
transition: transform 0.3s ease;
}
[class*="card-container__CardContainer-sc"]:hover .es-card-content-info::after {
transform: translateX(10px);
}
Please check it out and let me know if everything is fine now ![]()
Thank you so much!!
1 Like
It’s my pleasure ![]()
