Can I add post content to an accordion element?

I would like to be able to use the Accordion element to display post content - the post title in the accordion header and the first part of the post in the content area. I’m about halfway there using the recent_posts shortcode, updated to include the show_excerpt option. Is there a way to display just the post content in the accordion content area, and suppress the post title and the date?

Hello Christine,

Thanks for asking. :slight_smile:

If you would like to hide Post title and Date then please add following CSS under Pro > Theme Options > CSS:

.x-recent-posts .x-recent-posts-content h3, .x-recent-posts .x-recent-posts-content .x-recent-posts-date {
    display: none;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

1 Like

Thanks for your reply, it was very helpful!

You are most welcome. :slight_smile:

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