Add "Read More" under Blog Excerpt

Add this code to the Custom CSS field on the Settings tab of your Blog widget’s settings:

.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);
}

Result:

1 Like