Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #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.

    #1469001

    Hey 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,
    Mike

    #1469064
    This reply has been marked as private.
    #1469065
    This reply has been marked as private.
    #1469076

    Hi,
    I see in your Enfold Theme Options ▸ Blog Layout ▸ Blog Styling you are using the “default” is this the closest to want you want, such as the title size?
    Screen Shot 2024 10 14 at 7.26.02 AM
    Did you see the “modern business” option with the category and larger title?
    Screen Shot 2024 10 14 at 7.29.41 AM
    Both have a date, do you want this removed?

    Best regards,
    Mike

    #1469110
    This reply has been marked as private.
    #1469163

    Hi 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.
    Nick

    #1469204

    Hi,

    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,
    Ismael

    #1469395

    Thanks 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 joy

    Thanks
    Nick

    #1469397

    Hi,
    When I check I don’t see a date, try clearing your browser cache:
    Enfold Support 6509

    Best regards,
    Mike

    #1469769

    I’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
    Nick

    #1469806

    Hi,

    I’m not sure if I need to open another topic on this. But here is my issue.

    Yes, please open a new thread for this unrelated inquiry. We’ll close this thread for now.

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.