php - Removing just one separator from Twitter Bootstrap 3.0 -
i have breadcrumb have on every page. want pull 2 of breadcrumbs right, want remove separator before first element pulled right. have searched , found ways remove, or replace of separators, not one.
<ol class="breadcrumb"> <li><a href="../index.php">home</a></li> <li><a href="index.php">merchandise</a></li> <li>stickers</li> <li class="pull-right">view cart</li> <li class="pull-right">checkout</li> </ol>
i want remove separator between stickers , view cart.
thanks help.
you can pure css
.breadcrumb > li + li.pull-right:last-child:before { content: ""; }
Comments
Post a Comment