Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #746527

    Hello,

    I create two arrows links and i want to change slider images. How can i do that? I use fullwidth easy slider and i want to make two buttons, like Slideshow control styling.

    Can you help me, how can i do that?

    #747262

    Hey Designweb,

    Thanks for the details, though we need a URL as well to be able to log in.

    Best regards,
    Rikard

    #747386

    Hello Rikard,

    The slider has two arrows which i has created custom. I want to find a way to make that arrows functionality. Up arrow (go to next slider) and down arrow (go the previous slider).

    Thank you.

    #747790

    Hi,

    Ok, thanks for the info. I’m not sure why you would want to build a custom slider though? There are plenty to chose from by default in the theme. Maybe you could try one of those first? I think it would be easier to customise an existing slider if you want something different.

    Best regards,
    Rikard

    #747874

    Hello Rikard,

    which option allows to me to insert two arrows on the slider? I use fullwidth easy slider and i want to make two buttons(arrows), like Slideshow control styling.

    Thank you

    #747984

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-slideshow-arrows a.prev-slide:before {
        color: transparent;
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
    .avia-slideshow-arrows a.next-slide:before {
        color: transparent;
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
    

    Best regards,
    Yigit

    #748013

    Hello,
    that code doesn’t work.
    Go to my site at home page (put logo link to see that). I have create with handed code in the first slider two arrows(up & down) and i have put that code to Fullwidth Easy Slider > first element > caption > caption text.

    I have put a class to manipulated that element. The code is <div class=”icon_arrow”> > </div> and with css i have rotate that character.

    I want a way to change the slider images. If someone put that link to go next slider(up arrow) or previous slider(down arrow).

    How can i do that?

    Thank you

    #748020

    Hi!

    Please edit your slider and set “Slideshow control styling?” to default then add the code to Quick CSS.

    Cheers!
    Yigit

    #748320

    Thank you very much Yigit.

    That works, but i have a little problem with position when change screen resolution. Screen resolution more 1366px change the position of arrows in slider.

    How i can use the right code to CSS, don’t change position when screen resolution increase.

    Thank you

    #748409

    Hey!

    You can change the code to following one

    @media only screen and (min-width: 990px) {
    .avia-slideshow-arrows a.prev-slide:before {
        color: transparent;
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
    .avia-slideshow-arrows a.next-slide:before {
        color: transparent;
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }}

    For more information on using media queries, please see – https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries

    Cheers!
    Yigit

    #748467

    Nope, it doesn’t work on scrren resolution 1920×1080. In that resolution the arrows change positions.

    #748473

    Hi!

    Please change the code to following one

    @media only screen and (max-width: 1920px) {
    .avia-slideshow-arrows a.prev-slide:before {
        color: transparent;
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
    .avia-slideshow-arrows a.next-slide:before {
        color: transparent;
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }}

    I am not super clear on the issue you are having so please elaborate if that does not help. Please note that forums are currently very busy and we are trying to keep customizations to minimum

    Regards,
    Yigit

    #748491

    Nope. Thank you for quick answer.

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Text link change slider images’ is closed to new replies.