• Resolved mqlin

    (@mqlin)


    When I hover over the slider button, it moves up, instead of staying in the same place and changing its color.

Viewing 1 replies (of 1 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hey Mike,

    The movement is expected behavior for the slider button (demo site example). You can remove the movement with the following CSS:

    .bb-slider .read-more:hover {
      transform: none;
    }

    To change the color on hover, you can add this CSS too:

    .bb-slider .read-more:hover {
      background: red;
      color: #fff;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘“Read more” button on slider changes location on hovering’ is closed to new replies.