Background gradient

after update,

classic row is now gone…

and

I can only see this section options…

for the gradient background,

I used to just type on class, and go to css editor to add codes.

after update, one new options panel, how can I make gradient background??

background: linear-gradient(143deg, #33c299, #3aa9b3, #8a5ed7);
background-size: 600% 600%;

-webkit-animation: AnimationName 23s ease infinite;
-moz-animation: AnimationName 23s ease infinite;
animation: AnimationName 23s ease infinite;

@-webkit-keyframes AnimationName {
0%{background-position:14% 0%}
50%{background-position:87% 100%}
100%{background-position:14% 0%}
}
@-moz-keyframes AnimationName {
0%{background-position:14% 0%}
50%{background-position:87% 100%}
100%{background-position:14% 0%}
}
@keyframes AnimationName {
0%{background-position:14% 0%}
50%{background-position:87% 100%}
100%{background-position:14% 0%}
}

if I want this gradient, where should I put in this code?

Hey @koosang153,

Click on the Customize tab to access the Class field in the new V2 Section.

V2 elements inlcuding the V2 Section also has an Element CSS field so alternatively, you can put your CSS in there.

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.