-
AuthorPosts
-
May 27, 2020 at 5:44 pm #1217074
Hi there!
at the bottom of each page of my website I have the same elements – a request a demo title and widget. I have the bottom to top animation set on these blocks. I’d like to remove the animation from these blocks with CSS. I know I can remove the animation directly on the builder but I’d rather do it with CSS to save time.
The classes for the sections I want to remove the animation from are:
.get-started-title-container
.get-started-form-containerThank you!
May 27, 2020 at 9:54 pm #1217149Hey bobfurgo,
I’m not seeing any animation, just the contact form.
Best regards,
Jordan Shannon- This reply was modified 4 years, 6 months ago by Jordan Shannon.
May 27, 2020 at 9:58 pm #1217153hi jordan, it definitely has the bottom to top section animation applied. You may not be seeing it due to the preloader. Try visiting the link and then scrolling down to the bottom and you will see it animate just like all the other sections.
May 27, 2020 at 10:25 pm #1217174Hi,
Please provide admin info.
Best regards,
Jordan ShannonJune 3, 2020 at 3:35 pm #1219108please see private area
June 3, 2020 at 4:42 pm #1219134Hi,
Thanks for providing that. Add this to quick css:
.get-started-title-container, .get-started-form-container{ opacity: 100!important; /*CSS transitions*/ -o-transition-property: none !important; -moz-transition-property: none !important; -ms-transition-property: none !important; -webkit-transition-property: none !important; transition-property: none !important; /*CSS transforms*/ -o-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -webkit-transform: none !important; transform: none !important; /*CSS animations*/ -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important; -ms-animation: none !important; animation: none !important; }
Best regards,
Jordan ShannonJune 3, 2020 at 4:53 pm #1219139ahh worked perfectly. thank you so much
June 3, 2020 at 5:01 pm #1219141Hi,
No problem at all I’m happy to help. If you need anything else, please let us know here in the forums.
Best regards,
Jordan Shannon -
AuthorPosts
- The topic ‘remove animation with CSS’ is closed to new replies.