Okay
  Public Ticket #159753
Larger, View Larger
Closed

Comments

  • Morten started the conversation
    This is mostly a problem on screens with a smaller resolution like laptops etc. At the moment I have a masonry layout, where you can click to view larger. The problem is though, that the dimensions of some pictures, mostly tall ones, appear really small. Would there be a way to full screen the picture or just get the lightbox to take up more screen space? Morten
  •  1,043
    ThemeNectar replied

    Hey Morten :)

    Try adding this into your Custom CSS box located in your Salient Options panel:

    div.pp_pic_holder, .pp_content  {
       width: 100%!important;
       left: 0px!Important;
    }
    
    #fullResImage {
       height: auto!important;
       width: auto!important;
       max-width: 100%!important;
    }
    
    #pp_full_res {
      text-align: center!important;
    }

     

  • Morten replied

    Woaw, thank you so much. That was just what I needed!