I have a navigation menu with links, before the text link I have an icon, I would like to put this icon after the text link. The website is here http://www.labella.co.il/.
CSS of the link:
.sidebar ul.menu li a {background: url("1-default/bullet.png") no-repeat scroll 0 12px transparent;}
Icon image is in url("1-default/bullet.png").
Here is the changed code to get what you are after:
I am swapping the left padding to the right, and pushing the background image across to the right hand side.
Note that I have used
100%as opposed to a ‘magic number’ (like the other answers). This means that even if the width changes, the icons will still line up, with no maintenance required!