How do you get the slides to contain links to portfolios? You mentioned setting this under Theme Options, but there is no category for it in the slider options under Theme Options.
I tried doing this, but the arrows just take over the slide and nothing is clickable with links put into the slider. It only seems to work when the arrows are not active.
The arrow boxes without \"arrows\" activated would look better with 1/2 transparency to full on mouseovers. How can I achieve this?
How do you get the slides to contain links to portfolios? You mentioned setting this under Theme Options, but there is no category for it in the slider options under Theme Options.
Please assist, thank you.
Hi there,
if you are using Main Slider you can embed the links to any page you want in the slides content.
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
I tried doing this, but the arrows just take over the slide and nothing is clickable with links put into the slider. It only seems to work when the arrows are not active.
The arrow boxes without \"arrows\" activated would look better with 1/2 transparency to full on mouseovers. How can I achieve this?
Yes, you are right
So let\'s see
.flex-direction-nav .flex-next, .flex-direction-nav .flex-prev {
opacity: 0.5;
}
would be good enough?
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
At least these are the selectors you want to work with for \'normal\' arroes.
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
It\'s a big improvement, thanks!
Is there any way to make them operate like an <a> link with the styling I have on that? A slow fade in glow of white?
add the effects you wish on hover for the same elements
http://www.w3schools.com/cssref/sel_hover.asp
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
This didn\'t work?
.flex-direction-nav .flex-next, .flex-direction-nav .flex-prev {
opacity: 0.3;
}
a:hover {
text-decoration: none;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.9);
}
}
try
.flex-direction-nav a : hover{
...add you css styles effects here...
}
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio