Fix For "Interactive Elementor Landing Page Website Design " originally created by Jim Fahad
To make slider work: View this as three buttons that, when clicked, change the show/hide option for different containers. To make this work simply add a CSS name to the containers like item1, item2, and item3. Use item1 on all containers that need to appear when you click the first/top button. Add item2 to all containers for the middle button, and item3 or the final button. Example containers would be the individual heading and content on the left side, then the title, image, and button in the middle. Do not add classes to the buttons on the right as they will disappear.
Next copy the CSS and replace the existing custom CSS Jim Fahad provided in the main container.
Finally, replace the JavaScript in the HTML widget with the javascript provided.
Replace JavaScript code with this:
Replace custom CSS with this:
:root{
--activeC: #ffffffbf;
}
.control-area > .elementor-element.active{
background-color: var(--activeC) !important;
}
.item1 { display: block; }
.item2, .item3 { display: none; }
