Wall post images are thumb sized... How to make it bigger

  • March 20, 2018 11:35 AM EDT

    When a user posts on the wall the image gets to thumbnail size is there a way to make the image its normal size?

    • 119 posts
    March 20, 2018 3:50 PM EDT

    Hi,

     

    You have to change the theme.css file, I don't now what theme you are using, if you are using a 3rd party developer it will not work.

    I am using the Insignia Theme.

     

    This is the feed you are looking for:


    ul.feed .feed_attachment_photo a>span {
      display: block;
      width: 160px;
      height: 120px;
      background-size: cover;
      background-position: center 50%;
      background-repeat: no-repeat;
    }

     

    Paste this at the very bottom of the theme.css file:

    /* CUSTOM CSS STYLING /*
    /* Change photo size in feed /*


    ul.feed .feed_attachment_photo a>span {
      width: 320px;
      height: 280px;
    }

    Give it a try if you use the same theme. It will enlarge the photos and you have 2 on a row if multiple photos are uploaded at the same time.

    If there is an update the theme.css file might be over written, so always check if you need to add this again.


    This post was edited by Maurits at March 20, 2018 3:57 PM EDT