Text Overlapping in Blog Widget?

1 Like

Hi there, @toby_mathew :waving_hand: :waving_hand:

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 :slightly_smiling_face:

1 Like

Hi there, @toby_mathew :waving_hand:

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 :slightly_smiling_face:

Thank you so much!!

1 Like

It’s my pleasure :wink: