Hi,
Is it possible to add a floating button on portfolio items which, by a click on the button, scrolls down to a defined area at the page.
Hi t3lgroup!
You can turn on Custom CSS class field for Avia Layout Builder elements firstly (please see – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ )
And give your button a custom class, in the example it is “floating” then you can add following code to Quick CSS in Enfold theme options under General Styling tab
.floatting a {
position: fixed!important;
z-index: 99;
left: 5%;
top: 50%;
}
You can change its position on your page by adjusting left and top values
Regards,
Yigit
Great, that worked.
Thanks :)