• Great plugin!

    I’m trying to get a thin border line below/between each list item, so they are easier to differentiate.

    I’ve tried this css with no luck:

    #bpdev_bpnotification_widget-2 li {
    	border-bottom-width: thin;
    	border-bottom-style: solid;
    	border-bottom-color: #666666;
    }

    Any suggestions of how to accomplish such a feat?

    Thanks for any help.

Viewing 1 replies (of 1 total)
  • Plugin Author Brajesh Singh

    (@sbrajesh)

    Hi,
    Please try something like this

    
    .bpnw-notification-list li {
      border-bottom: 1px solid #666;
    }
    
    

    If that does not work, most probably the theme is using css with higher priority. You can either investigate further or use !important rule like this to overwrite.

    
    .bpnw-notification-list li {
      border-bottom: 1px solid #666 !important;
    }
    

    Hope that helps.

    Regards
    Brajesh

Viewing 1 replies (of 1 total)
  • The topic ‘separate list items with line’ is closed to new replies.