Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1178670

    Hi! I found this code in another post:

    .avia-slideshow-button {
        padding: 30px 30px !important;
    }

    But that makes it look weird on mobile view.
    How do I limit this code to work on desktop only?

    Also, I would love to add to the desktop view a different hover button color. Is that something that easy to implement?

    Many thanks!

    #1178876

    Hey 0_o,

    Please try this instead:

    @media only screen and (min-width: 768px) {
    .avia-slideshow-button {
        padding: 30px 30px !important;
    }
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.