Archived topic
How do I add a full-width line in my copyright notice
6 replies · Started by RJ on June 22, 2020
Hey there,
I have a line underneath my primary navigation that separates it from the container. I use this code to do that:
/* Navigation Shadow Underline */
.main-navigation {
position: relative;
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.20);
z-index: 1;
}
I want a similar line above my copyright notice. How do I do that?
TIA, Robin
I added a border to mine, something like
.footer-widgets {
border-top: 2px solid rgba(0,0,0,0.20);
}
Thanks, Ash. That didn't work as I meant to say:
"I want a similar line above my copyright notice."
... rather than footer.
Then you will want to use .site-info instead
Thanks Ash,
Hi Robin,
edit your current CSS and replace:
.main-navigation {
with:
.main-navigation, .site-footer {
Thanks David. That worked. Cheers.
You're welcome