• In the Adelle theme, instead of having the bar with the little flag ends, I’d like to just have my nav in a bar that is white in the middle and has a colored top border and bottom border. I have tried several options and cannot get this to work! Can anyone help?

Viewing 1 replies (of 1 total)
  • Hi there,

    Try this:

    1- Activate Jetpack plugin
    2- Activate the Custom CSS in Jetpack setting
    3- Add these lines in the Custom CSS (Appearance -> Edit CSS)

    .nav {
    	background: #fff;
    }
    
    .nav:before,
    .nav:after,
    .nav:before,
    .nav:after {
    	border: none;
    }
    
    .nav a,
    .nav a:hover {
    	color: #000;
    }
    
    .nav ul ul {
    	background: #fff;
    	-webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    	box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    }

    Hopefully that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Nav appearance’ is closed to new replies.