Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • hello Guest, if you cant find the thread you need, post your comment at Request Resource

Elementor how to create Gradient Background with Elementor Plugin

Administrator
Apr
92
5
Staff member
Offline

gradient code snippet​


Use this for 3 color gradient :​


Code:
<style>
.color-3 {

background-image: linear-gradient(to right,indigo,violet,blue);

}

</style>

Use this for 4 color gradient :​


Code:
<style>
.color-4 {

background-image: linear-gradient(to right,violet,indigo,yellow,red);

}

</style>


Use this for 5 color gradient :​


Code:
<style>
.color-5 {

background-image: linear-gradient(to right,violet,blue,green,yellow,red);

}

</style>


Add color gradient to text​


Code:
<span style="background: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;">

3 color text

</span>
 
Top