Okay
  Public Ticket #2905768
reduce photo zoom in
Closed

Comments

  •  2
    mburrough started the conversation

    Is there a way I can reduce the amount a photo is zoomed in when mouse hover?

    Is there a way to Add buttons to images?

  •  8,841
    Tahir replied

    Hey Again,

    - To reduct the zoom add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .portfolio-items[data-ps="7"] .col:hover img {
        -webkit-transform: scale(1.02) !important;
        -ms-transform: scale(1.02) !important;
        transform: scale(1.02) !important;
    }

    - Try using our Pre-built Page Layouts to view available options: http://themenectar.com/docs/salient/salient-studio/

     

    Thanks


    ThemeNectar Support Team 

  •  2
    mburrough replied

    perfect!