Home Forums Theone WordPress Theme Change the size of "Small Image" option of Team module

Tagged: , ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #10952
    jfrechin
    Participant
    Purchased
    Expired

    Hello,

    I need change de size of “Small Image” option of Team module.

    Can you help me?

    #10958
    SeaTheme
    Keymaster
    Purchased
    Expired

    Hi,

    Did you talk about this font(see attachment)?
    Please login wp-admin, go to Theone / General Settings / Custom Css
    Paste the style code to Custom Css:

    #content_wrap .team-item-con-h p.team-email, #content_wrap .team-item-con-h p.team-phone {
        font-size: 16px; 
    }

    Plz change the size as you want.

    #10971
    jfrechin
    Participant
    Purchased
    Expired

    Hi,

    No, I talk about the relative dimensions of the “Small Image” of the Team members.

    I need reduce the size of the image associated with each team member, in order that the number of elements of team members is greater in each row. Now appear 4 elements per row, and would need to be more, for example 6 or more.

    I understand that regardless of the device on which to display images of the team members, the scale on which are displayed varies, for example in a smartphone the same 4 team members are, but in a size proportional to the ratio of appearance.

    In short, what I need is to show in each row at least 6 elements, and understand that it must be through the size of the associated images, so, I want to resize.

    Can you help me with this, this is very urgent for me.

    Thank you!

    #10975
    SeaTheme
    Keymaster
    Purchased
    Expired

    Please find /js/custom.theme.isotope.js, line 152-156:

    if(container.width() <= 480){
    	width = Math.floor(container.width() / 1);
    }else if(container.width() >= 481){
    	width = Math.floor(container.width() / 4);
    }

    update to:

    if(container.width() <= 480){
    	width = Math.floor(container.width() / 1);
    }else if(container.width() >= 481){
    	width = Math.floor(container.width() / 6);
    }
    #10978
    jfrechin
    Participant
    Purchased
    Expired

    Ok, great.

    Many thanks!

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