Copyright border line
Answered on June 8, 2016.
Hi there,
the original style is using RGBA so you need to also if you want to avoid the !important flag.
.grid + .copyright {
border-top: 2px solid rgba(0, 0, 0, 1);
}
The last number in the rgba array is the opacity. We set it to .25 so the line shows up as a darker version of whatever the footer color is. To set it to a solid color, you must set the opacity to 1.