Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #771752

    Hi there,

    Is there any code to change the button into a circled one?
    I can change the color by using the following code:

    .ls-gui-element.ls-nav-next::before {
    border: 1px solid #fff;
    }

    But I can’t make it circle, please teach me. :)

    #772991

    Hello!

    Any suggestion please~!
    Thanks!

    #773133

    Hi greatliona,

    This article will give you the code for a circle.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #773386

    I tried to use this folloeing code

    .ls-gui-element.ls-nav-next::before, .ls-gui-element.ls-nav-prev::before  {
    border: 1px solid #fff;
    border-radius: 50%;
    }

    But still only changed the border color, anything wrong?

    • This reply was modified 7 years, 7 months ago by greatliona.
    #774332

    Hi,

    Please try this instead:

    .ls-gui-element.ls-nav-next::before, .ls-gui-element.ls-nav-prev::before  {
    border: 1px solid #fff;
    border-radius: 100% !important;
    }

    If you want to learn CSS then you can find many resources online, including W3Schools.

    Best regards,
    Rikard

    #775013

    Hi there,

    Problem solved.
    I change the selector then it works.
    Now I use

     #top .avia-layerslider .ls-nav-prev:before, #top .avia-layerslider .ls-nav-next:before  {
    border: 2px solid #fff;
    border-radius: 50%;
    }

    Thanks!

    #775015

    Hi,

    Great! We are happy that you were able to get this solved. If you need additional help, please don’t hesitate to contact us here.

    Best regards,
    Jordan Shannon

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