Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #1208700

    Hello! I love your theme. I have a couple of questions today:

    1) How can I change the colors of the fullscreen slider’s controls and arrows?
    2) My easy slider is not showing the controls in mobile, even if they are enabled (see link below).

    Thanks!!!

    #1209169

    Hey Cocoa,

    1. There’s no setting for changing the arrow slider color but it can be done by using CSS.
    Add this CSS code in Quick CSS, located in Enfold > General Styling (just change the color):

    #top .avia-fullscreen-slider .avia-slideshow-arrows a {
        color: blue;
    }

    2. Try adding this in Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top .avia-slideshow-controls a {
        display: block !important;
        opacity: 1 !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1209174

    Thanks Nikko! Here is what I noticed:

    1) The code does not include the bottom’s buttons and the arrows square borders. Can you send the code again please?

    2) With this code the buttons look broken. And how can I change colors of arrows, square borders and buttons in responsive also?

    Thanks again.

    #1209769

    Hi Cocoa,

    1. Just add background-color, so the new code for it should be:

    #top .avia-fullscreen-slider .avia-slideshow-controls a {
        color: #61011c;
        background-color: #ccc;
    }

    2. Same with #1, add background-color:

    @media only screen and (max-width:767px) {
      .responsive #top .avia-slideshow-controls a {
        background-color: #ccc;
        display: block !important;
        opacity: 1 !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1210522

    Thanks Nikko, it worked. Just one thing:

    1) The code changed the bottom button’s color but the button’s hover disappeared, they all look the same color, all the time. How can I get back the color change when the images are changing?

    Thanks again.

    #1210555

    Hi cocoagroup,

    You can do add this CSS code for hover (just change the background color):

    #top .avia-fullscreen-slider .avia-slideshow-controls a:hover {
        background-color: blue;
    }

    Best regards,
    Nikko

    #1210562

    Thanks, but, how can I get back the automatic hover color change when the images are changing?

    Regards!

    #1210731

    Hi Cocoa,

    I don’t think we have that feature on Fullscreen Slider.
    I checked our demos and don’t find anything like that: https://kriesi.at/themes/enfold-2017/elements/fullscreen-slider/
    And also checked the backend option and could not find anything like that.
    Also it’s not possible with CSS, can you give us a link where that is shown using Enfold?
    If you adjust the opacity/transparency (whether using opacity or rgba) to something like 0.5 or below, should make the slider arrows blend in with the background which could give some impression of having a changing background color.

    Best regards,
    Nikko

    #1210742

    Hello Nikko, sorry I think I was not precise enough.
    As you will see in the link below, when I apply the code you sent me the Fullscreen Slider button is not highlighted anymore when each image is shown, during the animation. How can we solve that?

    Thank you.

    #1210916

    Hi Cocoa,

    Can you provide a screenshot for that please, maybe a comparison of before and after.
    I have checked the link you gave and if I remove those added CSS codes I do see a difference in color but I’m not really sure what you meant with it’s not highlighted, I only see the difference in background color and opacity :(

    Best regards,
    Nikko

    #1214121

    Hi Nikko, yes, I am providing you a link below of a screenshot of another site. Ass you will see, the buttons are highlighted when each image is shown, with a white hover.
    I would like to keep the hover, but with the new color we set up.

    Thanks,
    Cocoa

    #1214166

    Hi Cocoa,

    I see, please replace all .avia-slideshow-controls with .responsive #top .avia-slideshow-arrows a and that should fix it.

    Best regards,
    Nikko

    #1214341

    Hello Nikko, if I apply that code the buttons go back to the original color. How can I change the color of the buttons but keep the white hover on them?

    Regards,
    Cocoa

    #1214853

    Hi Cocoa,

    For those dots you can use .responsive #top .avia-slideshow-dots a

    Best regards,
    Nikko

    #1215065

    Hi Nikko,

    I used that code in the following CSS:

    .responsive #top .avia-slideshow-dots a {
    background-color: #61011c;
    opacity: 0.7;
    }

    However the dot’s highlight is missing now (see screenshot in link below).

    Regards, M.

    #1216013

    Hi M.,

    Try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    .responsive #top .avia-slideshow-dots a:hover {
      background-color: yellow;
    }

    Best regards,
    Nikko

    #1216278

    Hi Nikko, I used that CSS code.

    It works for the hover, however the dot’s automatic highlight is still missing.

    Regards, Cocoa.

    #1216628

    Hi M.,

    Thanks for the clarification, please add this CSS code (for active slide):

    .responsive #top .avia-slideshow-dots a.active {
        background-color: yellow;
    }

    Best regards,
    Nikko

    #1216682

    Great! Thank you!

    #1216818

    Hi M.,

    We’re glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 20 posts - 1 through 20 (of 20 total)
  • The topic ‘Fullscreen slider’ is closed to new replies.