Classic recent post edit

Hi,
I’m doing some updates on one of the websites I manage and want to add the “classic recent post” element on the home page. However, I would like to remove the colour and icon that comes over the image as you hover over it but I would like to keep the highlight of the text under the feature image when hovering though. Also, I would like to remove the grey border that surrounds each post. How do I go about doing this?

Thank you,
Renzo.

Hi Renzo,

You can achieve those through some custom CSS.

Please try this:

.x-recent-posts a {
    border: 0;
    padding: 0;
    box-shadow: none;
}

.x-recent-posts .x-recent-posts-img:before, 
.x-recent-posts .x-recent-posts-img:after {
    opacity: 0 !important;
}

Here are some reference links related to the suggestions above:

Hope this helps.

Hi Jade,
Worked perfectly. Thanks.

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.