Stop services pics from zooming in.

Discussion in 'BusinessGrow One Page WordPress Theme' started by carlaulrich, Dec 12, 2013.

  1. carlaulrich

    carlaulrich New Member

    Joined:
    Dec 12, 2013
    Messages:
    9
    Likes Received:
    0
    Also, how do I stop the picture in the 4 services circles from zooming in on the home page? Thanks
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    Remove the following code from your "style.css" file from line number 1531-1540 and from 1601-1613.

    Also sending you the code which you have to remove.

    Code:
    box-shadow:
            inset 0 0 0 0 rgba(200,95,66, 0.4),
            inset 0 0 0 16px rgba(255,255,255,0.6),
            0 1px 2px rgba(0,0,0,0.1);
     
    -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
     
    -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
     
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
     
        -webkit-backface-visibility: hidden;
    it will solve your issue.

    Thanks & Warm Regards
    Harmeet Singh
    InkThemes.com
     
  3. carlaulrich

    carlaulrich New Member

    Joined:
    Dec 12, 2013
    Messages:
    9
    Likes Received:
    0
    Thanks, I did that but it wasnt exactly what i was looking for. I want the pic to be the size it is when I hover over it so basically showing the full picture and not a zoomed in version.

    http://legacyofourelders.com/
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207

    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .ch-img-1 {
    background-size: 260px 260px!important;
    }
    .ch-img-2 {
    background-size: 260px 260px!important;
    }
    .ch-img-4 {
    background-size: 260px 260px!important;
    }
    .ch-img-3 {
    background-size: 260px 260px!important;
    }

    This will solve your issue.



    Thanks & Regards
    Gourav Shrivastava
     
    carlaulrich likes this.

Share This Page