Hey ya'll, I made some light custom CSS to achieve this changing text animation (see attached screenshots). But it seems to have overridden other codes as the changing text animation has been appearing on the homepage, in navigations, and in the settings as well (so weird!). Does anyone know what part of the code can be edited to fix this issue?
Question
jackiek 0
Hey ya'll, I made some light custom CSS to achieve this changing text animation (see attached screenshots). But it seems to have overridden other codes as the changing text animation has been appearing on the homepage, in navigations, and in the settings as well (so weird!). Does anyone know what part of the code can be edited to fix this issue?
Thanks for your time and help in advance!
Best,
Jackie
Code text box:
<div class=“wrapper”>
<h3><span></span></h3>
</div>
Custom CSS editor:
.wrapper{
position: absolute;
}
span:before{
content: '';
animation: animate infinite 10s;
}
@keyframes animate{
0%{
content: 'Hi 👋🏽';
}
20%{
content: '你好';
}
40%{
content: 'Hola';
}
60%{
content: 'Ciao';
}
80%{
content: 'Hej';
}
100%{
content: 'Hi 👋🏽';
}
}
Link to post
Top Posters For This Question
1
1
Popular Days
Sep 16
1
Sep 18
1
Top Posters For This Question
jackiek 1 post
tuanphan 1 post
Popular Days
Sep 16 2020
1 post
Sep 18 2020
1 post
Posted Images
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment