-
AuthorPosts
-
October 12, 2024 at 9:38 pm #1468999
Perhaps this has been asked before, but I am not getting anything on the search.
I have a blog element on a page displaying posts.
I would like to format it as follows
Headline first,
Featured image
Excerpt Last
Stacked on top of each other.The default layout seems to be Image, headline, and excerpt.
I appreciate any help you can provide.
October 12, 2024 at 10:59 pm #1469001Hey Nick_Skehan,
Please check the Enfold Theme Options ▸ Blog Layout ▸ Blog Styling each option has a different layout and some are only available for certain options. Please choose the one that is closest to what you are looking for, we can help with javascript & css to make any final adjustments.
Please link to your page so we can make these final adjustments viewing your site.Best regards,
MikeOctober 14, 2024 at 9:24 am #1469064This reply has been marked as private.October 14, 2024 at 9:27 am #1469065This reply has been marked as private.October 14, 2024 at 1:31 pm #1469076October 14, 2024 at 5:38 pm #1469110This reply has been marked as private.October 15, 2024 at 3:28 pm #1469163Hi Mike, if you could return to me regarding hiding the date, also can I order the blog posts I created to display the oldest post first?
Thanks in advance.
NickOctober 16, 2024 at 9:30 am #1469204Hi,
Thank you for the update.
To hide the date, you can add this css code:
.slide-entry-wrap .slide-entry .slide-meta-time { display: none; }
Or toggle the Blog Post Date option in the Enfold > Blog layout > Blog Meta Elements section.
And to display the oldest posts first, please add this filter in the functions.php file:
add_filter( 'avia_post_slide_query', 'avf_custom_avia_post_slide_query', 10, 2 ); function avf_custom_avia_post_slide_query( $query, $params ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; }
Best regards,
IsmaelOctober 18, 2024 at 3:18 pm #1469395Thanks for that Ismael
However the date does not disappear, I have disabled it on the Meta Elements section and added the code to the CSS, but the date is still on the blog posts.
I have tried adding it to the Style.css and the CustomCss but no joyThanks
NickOctober 18, 2024 at 4:15 pm #1469397October 24, 2024 at 3:50 pm #1469769I’m not sure if I need to open another topic on this. But here is my issue.
I want to reduce the size of the colour section on the homepage that contains the video overlay, but the height will not be reduced no matter what option I pick.
I have also tried to give it a custom ID and add that to the CSS, but nothing seems to work.
Can you advise?
Thanks
NickOctober 25, 2024 at 5:51 am #1469806 -
AuthorPosts
- You must be logged in to reply to this topic.