tuanphan Posted October 12 Posted October 12 To add a line between navigation dropdown items, you can use this code to Website Tools > Custom CSS. div.header-nav-folder-item { border-bottom: 1px solid #000; } Result If you want width of text = width of line, you can use this CSS code div.header-nav-folder-item a { display: inline-block !important; border-bottom: 1px solid #000; } Result If you want line appears on hover only, use this CSS code div.header-nav-folder-item a { display: inline-block !important; border-bottom: 1px solid transparent; } div.header-nav-folder-item a:hover { border-color: #000; } Result on hover Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment