@jerad
To change social icons in WordPress Elementor after scroll, you can use custom CSS code. Here is an example of how you can achieve this:
1 2 3 4 5 6 7 |
.elementor-sticky--effects { .social-icons { color: blue; /* Change the color of the social icons */ background-color: white; /* Change the background color of the social icons */ border-radius: 50%; /* Add border radius to the social icons */ } } |
You can customize the CSS code further to change other properties of the social icons, such as size, font, alignment, etc. Just make sure to adjust the code according to your design preferences.