Home Forums Arnold WordPress Theme Improve Image quality in a post – any hints ?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #12058
    vanreduzier
    Participant
    Purchased
    Expired

    Hey there Bwsm,

    i am not too satisfied with the quality in which the pictures are shown in a post via “Gallery Layout Builder”. As you can see in the examples, the image quality improves, as you get into lightbox and see it big.

    That is quite a common behaviour, i know – but is there any way to improve the standard view ? I uploaded the pictures in a pixel width of 2500px, jpg. Was that too big ? Any suggestestions on how get the best image quality when it come to main view (without lightbox) ?

    Thanks

    standard view / before:
    before

    lightbox big / after:
    after

    #12063
    SeaTheme
    Keymaster
    Purchased
    Expired

    Hi,

    Please try to change the image size by:

    plz find: /functions/interface/interface-functions.php
    line 1642-1645:

    case 'list_layout_1': $col_class = 'list-layout-col1-item'; $image_size = 'arnold-standard-thumb-big'; break;
    case 'list_layout_2': $col_class = 'list-layout-col2-item'; $image_size = 'arnold-standard-thumb-medium'; break;
    case 'list_layout_3': $col_class = 'list-layout-col3-item'; $image_size = 'arnold-standard-thumb'; break;
    case 'list_layout_4': $col_class = 'list-layout-col4-item'; $image_size = 'arnold-standard-thumb'; break;

    update to:

    case 'list_layout_1': $col_class = 'list-layout-col1-item'; $image_size = 'full'; break;
    case 'list_layout_2': $col_class = 'list-layout-col2-item'; $image_size = 'full'; break;
    case 'list_layout_3': $col_class = 'list-layout-col3-item'; $image_size = 'arnold-standard-thumb-big'; break;
    case 'list_layout_4': $col_class = 'list-layout-col4-item'; $image_size = 'arnold-standard-thumb-medium'; break;
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.