Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #377117

    On my fullscreen slider on my homepage I have alternating colors for button 1 on every other slide. For the slides that currently have a red color for the button, I would like to make the color #3d71a1 How would I do this since there is no way to select a custom color for those buttons? Thanks in advance!

    #377226

    Hey djshortkut!

    Thank you for using Enfold.

    You can use child selectors or something like this:

    .avia-fullscreen-slider .avia-slideshow-inner li.slide-2 a.avia-slideshow-button {
    color: #3d71a1 !important;
    }

    Cheers!
    Ismael

    #377247
    This reply has been marked as private.
    #377469

    Hi!

    Please add following code to Quick CSS

    .slideshow_align_caption a.avia-slideshow-button:nth-child(3) {
    background-color: #3d71a1 !important;
    }

    Best regards,
    Yigit

    #379252
    This reply has been marked as private.
    #380583

    Hey!

    1. Try with this code:

    a.avia-slideshow-button.avia-button.avia-color-red.avia-multi-slideshow-button {
    background-color: #3d71a1 !important;
    }
    

    2. You can control the shadow’s color with this code:

    .avia-button.avia-color-red, .avia-button.avia-color-red:hover {
    border-color: white;
    }
    

    if you want to remove any color use border-color: transparent

    Cheers!
    Andy

    #381143

    Resolved. Thank you!

    #381571

    You can close this thread

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Fullscreen Slider Button Colors’ is closed to new replies.