• Resolved Sergey9999

    (@sergey9999)


    Hello!

    Tooday i downloaded your plugin first time! You have good plugin! Minimal and beautifull!

    I have a qustion.

    How to change color’s bullets? What code i need to whrite?

    I know how to change color’s buttons:

    .ms-skin-default .ms-nav-next:after, .ms-skin-default .ms-nav-prev:after {
        content: '';
        border: solid #ffbb44;
        border-width: 0 3px 3px 0;
        display: block;
        padding: 10px;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
    }
    
    .ms-skin-default .ms-nav-next:after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    
    .ms-skin-default .ms-nav-next, .ms-skin-default .ms-nav-prev {
        background: none !important;
    }
    

    But dont know hot to change bullets.

    And how to replace icons of buttons to custom?

    I will be very appreciate you for answer this questions! ?

    • This topic was modified 7 years, 4 months ago by Sergey9999.
Viewing 1 replies (of 1 total)
  • Plugin Contributor averta support

    (@averta_support)

    Hi,

    Thank you for choosing Master Slider.

    Those bullets are images so you cannot change the color of those images. But you can remove them and add background-image instead of them. For example, you can try the below code:

    .ms-bullet  {
    background-image: none !important;
    background-color: red !important;
    width: 10px !important; height: 10px !important;
    border-radius: 50% !important;
    }

    You can change the values to achieve your desired style.

    About changing the navigation arrows, you can add custom skin. Here is a similar question:
    https://www.ads-software.com/support/topic/navigation-arrows-color/

    If you need any further information, please let me know.

    Best,

Viewing 1 replies (of 1 total)
  • The topic ‘Color’s bullets and icon’ is closed to new replies.