[Resolved] How do I add a full-width line in my copyright notice

Home Forums Support [Resolved] How do I add a full-width line in my copyright notice

Home Forums Support How do I add a full-width line in my copyright notice

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1337052
    Robin

    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

    #1337081
    Ash

    I added a border to mine, something like

    .footer-widgets {
    	border-top: 2px solid rgba(0,0,0,0.20);
    }
    #1337137
    Robin

    Thanks, Ash. That didn’t work as I meant to say:

    “I want a similar line above my copyright notice.”

    … rather than footer.

    #1337145
    Ash

    Then you will want to use .site-info instead

    #1337189
    David
    Staff
    Customer Support

    Thanks Ash,

    Hi Robin,

    edit your current CSS and replace:

    .main-navigation {

    with:

    .main-navigation, .site-footer {

    #1337281
    Robin

    Thanks David. That worked. Cheers.

    #1337282
    David
    Staff
    Customer Support

    You’re welcome

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.