I've configured my navigation bar using a list with li elements. To give it a rounded appearance, I applied a border-radius to the background. Now, I'm looking to remove the border-left
specifically from the home element. Below are the code snippets:
HTML:
<li class="home">
<a href="<?php echo url('/'); ?>">home</a>
</li>
CSS:
li.home {
border-left:0px;
}
This should provide all the necessary information to address my query. Let me know if further details are needed.