Timer and size on slider

  • Unknown's avatar

    How can I change the timer on the slider on the Hime page and change the height of the slider?

    The blog I need help with is: (visible only to logged in users)

  • Hi there – Radiate doesn’t have an option to change the slider speed.

    The slider height can be overridden with something like this, to limit it to larger screens. You can change that media query if you don’t mind the height change affecting small screens too. You can experiment with the size you want, testing the screen at different sizes to see what works best for you.

    @media screen and (min-width: 1307px) {
      .bx-viewport {
        height: 500px ! important;
      }
    }

    Normally we try to avoid using “important” in CSS, but it seems necessary here to override the inline CSS the theme generates.

  • The topic ‘Timer and size on slider’ is closed to new replies.