I have a django app that has a horizontal nav. The horizontal nav looks like the image below. 
Now what I want to do is edit the sub navigation for storage orders. For both Delivery and collection orders tabs, I want both of these curved tab images removed, and have both of these tab in a retangular background color similar to my tabs. Something like this.
base_menu.html
<ul id="toc">
<li id="current"><a href="{% url mmc.views.return_clients %}"><span>Home</span></a></li>
<li><a href="{% url mmc.views.quote_step1 %}"><span>Create quote/order</span></a></li>
<li><a href="{% url mmc.views.search_item %}"><span> Item Search</a></span></li>
<li><a href="{% url mmc.views.order_list %}"><span>Storage orders</span></a><br/>
<ul class="subnav">
<li><a href="{% url mmc.views.order_list_service 1 %}"><span>Delivery orders</span></a></li><br/>
<li><a href="{% url mmc.views.order_list_service 2 %}"><span>Collection orders</span></a></li>
</ul>
</li>
<li><a href="{% url mmc.views.service_list 1 %}"><span>Delivery list</span></a></li>
<li><a href="{% url mmc.views.service_list 2 %}"><span>Collection list</span></a></li>
<li><a href="{% url mmc.views.invoice_list %}"><span>Export for invoicing</span></a></li>
<li><a href="{% url mmc.views.dbbackup %}"><span>Backup data</span></a></li>
<li><a href="{% url mmc.views.help_index %}" target="_blank" onclick="return showAddAnotherPopup(this);"><span>Help</span></a></li>
</ul>
<br/>
base.css
ul#toc {
height: 2em;
list-style: none;
margin-left: 20px;
padding: 0;
position relative;
}
ul#toc li{
background:#ffffff url(../images/tab.png);
float: left;
margin: 0 1px 0 0;
}
ul#toc span {
background: url(../images/tab.png) 100% 0;
display: block;
line-height: 2em;
padding-right: 10px;
}
ul#toc a {
color: #000000;
height: 2em;
float: left;
text-decoration: none;
padding-left: 10px;
}
ul#toc a:hover {
background: url(../images/tab2.png);
text-decoration: underline;
}
ul#toc a:hover span{
background: url(../images/tab2.png) 100% 0;
}
ul.subnav {
float:left;
display:none;
position:absolute;
margin-top:10px;
z-index:999;
padding-top:2px;
}
ul#toc li:hover .subnav {
display:block;
}
Update @Yule I have done what you said, but nothing changes. I have instead wrote.
ul.subnav a {
background: url(../images/squaretab.png)
}
And this gives me this.

Now here U have a grey image on the left, but only partially. I need to remove that green tab completely. How would I do this?
Just set a BG image on subnav li: