[Resolved] putting a line above and under main navigation

Home Forums Support [Resolved] putting a line above and under main navigation

Home Forums Support putting a line above and under main navigation

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2380173
    Mike

    Hi
    I got this from a post in this forum, but it doesn’t add any lines. Can you tell me if the code is still good, or I’ve go something wrong? In fact, the .inside navigation is showing red in the additional css, but I can’t find the right combination

    .inside-navigation {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    }

    https://sportskilz.com

    thanks

    #2380236
    David
    Staff
    Customer Support

    Hi there,

    in your Customizer CSS you have an error – see here:

    
    .sidebar li {
        border-bottom: 1px solid #809ead;
    	border-style: dashed solid;
    	
    	.inside-navigation {
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    There is a missing closing bracket for the .sidebar li rule.

    Change that CSS to this:

    
    .sidebar li {
        border-bottom: 1px solid #809ead;
        border-style: dashed solid;
    }
    
    .inside-navigation {
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
    #2380264
    Mike

    As always, I appreciate your help!

    #2380886
    David
    Staff
    Customer Support

    You’re welcome

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