Hi there,
I’d like to display the full title in my recent posts rather than it being cut off.
I tried this code below but it’s still being cut off:
.x-recent-posts .h-recent-posts {
overflow: visible;
}
Thanks!
Hi there,
I’d like to display the full title in my recent posts rather than it being cut off.
I tried this code below but it’s still being cut off:
.x-recent-posts .h-recent-posts {
overflow: visible;
}
Thanks!
Hey Dush,
This code should do it:
.x-recent-posts .h-recent-posts,
.x-recent-posts .x-recent-posts-date {
text-overflow: unset;
overflow: visible;
white-space: unset;
}
Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.
Hope this helps.
Perfect, thank you!
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.