I am currently facing a problem with trying to implement an icon next to text in the top navigation of a custom WordPress theme, but so far I have had no success. You can view my theme at URL Development. How can I make it work as intended in the concept below? https://i.sstatic.net/AsZkR.jpg
Here is the style.css code snippet:
.main-navigation2 a {
padding: 0;
margin: 7px 0 0 6px;
display: block;
text-decoration: none;
line-height: 43px;
color: #FFF;
background: url(img/arrow.png) no-repeat scroll right / 20% 20%;
width: 74px;
background-position-x: 96%;
}
Thank you in advance.