Erkan-Erdogan Posted November 11, 2014 Share Posted November 11, 2014 Hi guys. How can i make the last border in Top Horizontal Menu disappear? I've tried removing all the borders in superfish-modified.css, but nothing happened. Then i thought - maybe it will look better if i just remove the last border. But how? Thanks. Link to comment Share on other sites More sharing options...
Erkan-Erdogan Posted November 11, 2014 Author Share Posted November 11, 2014 Now i managed to remove all the borders .. but i still really want to know i how i can remove just the last border Link to comment Share on other sites More sharing options...
Paulito Posted November 12, 2014 Share Posted November 12, 2014 Hello Use this code at the bottom of: superfish-modified.css .sf-menu > li:nth-child(5) { border-right: none; } Change this Number to your last menu number Before http://screencast.com/t/Ed10UAtA After http://screencast.com/t/TzLHq1zkDyio Paul 1 Link to comment Share on other sites More sharing options...
DrunkBug Posted November 12, 2014 Share Posted November 12, 2014 Hello Use this code at the bottom of: superfish-modified.css .sf-menu > li:nth-child(5) { border-right: none; } Change this Number to your last menu number Before http://screencast.com/t/Ed10UAtA After http://screencast.com/t/TzLHq1zkDyio Paul It's better to use .sf-menu > li:last-child { border-right: none; } in this case. Because then you don't have to worry if the number of menu items changes. Link to comment Share on other sites More sharing options...
Recommended Posts