PenciDesign Supporter replied
Hi,
The header builder doesn't use this sticky method, so your code will doesn't work.
Please try to replace it with this code:
.penci_builder_sticky_header_desktop:after {
content: '';
width: 3000px;
height: 4px;
opacity: 0.6;
animation: customrotate 3s infinite linear;
background: linear-gradient(to right,#30ff90 0,#ed2ded 25%,#ff7600 50%,#30ffe6 75%,#30ff90 100%);
position: absolute;
bottom: 0;
}
@keyframes customrotate{from{background-position:-3000px}to{background-position:0}}
Regards,
PenciDesign.