Hi,
In the advanced styling settings of the Enfold theme I have the ability to adjust the “buttons”. I have made changes there affecting the border radius and padding. I noticed that these settings also impact the styling of the previous and next buttons on the easy slider (not in a good way though).
Which quick CSS can ensure that the easy slider navigation buttons simply remain in the standard style? I’ll plot a link to an example in the private content section.
Thanks and regards
yes you are right – that setting influences not only the button but also:
#top #wrap_all .avia-slideshow-button, #top .avia-button, .html_elegant-blog .more-link, .avia-slideshow-arrows a::before {
border-radius: 50px;
}
so you can set for those an extra rule in your quick css:
#top .avia-slideshow-arrows a::before {
border-radius: 5px;
}
the #top selector will ensure that the rule will be overwritten but these rules from slideshow_fullsize.css will be untouched
#top .av_slideshow_full.av-control-default .next-slide:before{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
#top .av_slideshow_full.av-control-default .prev-slide:before{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
Thanks for your support Guenni007! Worked out well.
Hi,
Glad to know that this solution is working well. Thanks to @Guenni007! Please feel free to open another thread if you have more questions regarding the theme.
Have a nice day.
Best regards,
Ismael