i am using some simple menu CSS, some parts need to be unpuck and to let my website users know this menu have some submenu options i want to put arrow close to it.
It should look like: http://funedit.com/imgedit/soubory/small_19971213581407508176.jpg
And my code looks like:
CSS
.filter{
margin-left:20px;
position: relative;
}
.filter a{
color: #888888;
float: left;
width: 120px;
height: 35px;
text-decoration: none;
padding: 0.2em 0.6em;
font-size: 120%;
text-align: center;
}
li:after {
content: "";
background-image: url("../images/filter_arrow.png");
background-repeat: repeat-x;
display: block;
width: 25px;
height: 13px;
margin: 0;
position: absolute;
right: 480px;
top: 100px;
vertical-align: middle;
}
HTML:
<div class="filter">
<ul>
<li><a href="#">Progress</a></li>
<li><a href="#">Claimed number</a></li>
<li><a href="#">Make</a></li>
<li><a href="#">Status</a></li>
</ul>
</div>
EDIT: Yea sorry guys i forgot on some CSS i am using above as well in my other code, its:
ul{
list-style-type: none;
float: left;
width: 100%;
padding-left: 0px;
}
li{
display: inline;
}
Is here anyone who can help me to fix this problem with arrows? Because on my version they are just randomly separate on website at the moment.