Gradient Background Image

I would like to do a vertical gradient in the background with two colors. What CSS would l need to enter. Or, how can I do with the Pro Version.

Hi @rkassebaum,

Thanks for writing in.

You can add class to your section where you want to add gradient.

Then add this in your custom CSS:

.gradient {

 background-image: linear-gradient(red, orange);

}

You can check the link below for more details about gradient background.

Summary

https://css-tricks.com/css3-gradients/

Hope it helps.

Let usk now how it goes.

Thanks.

1 Like

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