Hello @Lyser,
Your custom CSS is valid and correct. It is not working in your homepage all because of your custom inline element CSS added in the section element. You have added this:
$el {
background: rgba(93,50,194,1);
background: -moz-linear-gradient(top, rgba(93,50,194,1) 0%, rgba(87,85,195,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(93,50,194,1)), color-stop(100%, rgba(87,85,195,1)));
background: -webkit-linear-gradient(top, rgba(93,50,194,1) 0%, rgba(87,85,195,1) 100%);
background: -o-linear-gradient(top, rgba(93,50,194,1) 0%, rgba(87,85,195,1) 100%);
background: -ms-linear-gradient(top, rgba(93,50,194,1) 0%, rgba(87,85,195,1) 100%);
background: linear-gradient(to bottom, rgba(93,50,194,1) 0%, rgba(87,85,195,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d32c2', endColorstr='#5755c3', GradientType=0 );
]
The closing bracket is incorrect ] which should be }. Kindly edit and update it because that incorrect closing bracket affect the rest of the page’s custom styling.
If you need anything else we can help you with, don’t hesitate to open another thread.