swalbrick Posted October 10 Posted October 10 Site URL: https://www.stevenwalbrick.com Im trying to get an animated background similar to this page (https://www.seanhalpin.xyz/fun). I want it to stay at the top and just move at the top like it is on that page. Need the css for it if thats possible. Thanks
tuanphan Posted October 13 Posted October 13 You can use this example code to Website Tools > Custom CSS. Replace color with your desired color body { background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); background-size: 400% 400%; animation: gradient 15s ease infinite; overflow-x: hidden; } .header-background-solid { background-color: transparent !important; } .section-background, .section-border, section { background-color: transparent !important; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment