Home › Forums › WoodMart support forum › How to transfer pages from a one theme to another theme › Reply To: How to transfer pages from a one theme to another theme
June 17, 2021 at 7:43 am
#300321
Elise Noromit
Member
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
@keyframes xts-shake {
0%,
12% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
2%,
4%,
6%,
8%,
10% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
3%,
5%,
7%,
9%,
11% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
}
.entry-summary .single_add_to_cart_button {
animation-name: xts-shake;
animation-duration: 10s;
animation-delay: 5s;
animation-iteration-count: infinite;
animation-fill-mode: both;
}
If you have any questions please feel free to contact us.
Best Regards