Hello,
I have tried to set up a colour section with a linear gradient. It works with the following code but I am not able to set the height to 2px
.page-id-502 #farbe {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet) !important;
height: 2px !important;
}
Is there a minimum height for containers? Do I have another possibility for implementing this?
Here is an example of what I want to achieve: https://postimg.cc/Js7Nrc88
Best regards,
Christopher
guess #farbe is the unique id for that section?
.page-id-502 #farbe {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet) !important;
height: 2px !important;
min-height: 0
}
maybe an !important is necessary too
every .avia-section got a minimum-height of 100px