Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1423709

    Hi,
    what can I do (when I clicked a category to see other posts with the same category) to align to date and to change the image size. Please see screenshot (link in private content). The date needs to be centered, the image needs to be the original size.
    Kind regards,
    Veronika

    #1423889

    Hey Loveronika,

    Thank you for the inquiry.

    The date should align with the post title or the “read more” button by default. The misalignment may have been caused by css modifications. Please provide the link to the category page so that we can thoroughly inspect the elements.

    Best regards,
    Ismael

    #1423898

    Hi, please see below in the private content.
    Kind regards,
    Veronika

    #1424015

    Hi,
    Thank you for the link to your site and your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_elegant-blog #top.category .post-entry .post-meta-infos {
        float: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1424109

    Hi Mike,
    thank you, it works now. Date layout looks perfect.
    How can I change the image size in the same layout? To 4:3 e.g.?
    Kind regards,
    Veronika

    #1424200

    Hi,

    Thank you for the update.

    To adjust the image size in the archive pages, you can add this code in the functions.php file.

    add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 );
    function avf_modify_thumb_size_mod( $size ) {
       $size['entry_without_sidebar'] = array('width'=>1210, 'height'=>908);
       return $size;
    }

    You may need to regenerate the thumbnails to resize existing images.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Please make sure that you upload images that are not smaller than 1210x908px and have a 4:3 aspect ratio.

    Best regards,
    Ismael

    #1424235

    Thank you :-)

    #1424258

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Layout Blog Posts in Categories’ is closed to new replies.