• Hi Guys

    I am using the Vamtam AutoService template : http://vamtam.com/?theme=auto

    If you go to the link, under “Meet our Specialists”, when hovering mouse over pictures it turns a color and zooms, how do I remove that to only be a stock picture with no color or animation when mouse hover ? tried looking through .less and .php files but struggling.

    Please help

    Regards

    Juan

Viewing 2 replies - 1 through 2 (of 2 total)
  • Either find and remove this CSS:

    .team-member:hover img {
      opacity: 0.7;
      -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
      transform: scale(1.15);
    }

    Or add this CSS to overwrite it:

    .team-member:hover img {
      opacity: 1;
      -webkit-transform: scale(1)
      -ms-transform: scale(1);
      transform: scale(1);
    }

    I recommend the second option using a Custom CSS plugin or child theme, so the change isn’t undone by future theme updates.

    I doubt the LESS files are much use to you unless you’re running a compiler on them to create your own theme.

    Thread Starter edgeza

    (@edgeza)

    Thanks so much for the help 😀

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘AutoService Template help’ is closed to new replies.