I have bullet points that are aligned right and I would like the bullet points to appear on the right instead of left.
I'm using bullet points because I will replace the bullet with an arrow the points to a URL and use it for navigation.
How do I do this?
This is the code that i'm using for the navigation in the header:
.header right {
padding-top: 8px;
float: right;
text-align: right;
}
.header right ul
{
margin:0;
padding:0;
}
.header right a
{
display:block;
color: black;
text-decoration: none;
}
and the html
<right>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Jewel Thieves</a></li>
<li><a href="">Community</a></li>
</ul>
</right>
If I use direction rtl, the bullets dissapeared.