Reputation: 45
Please assist me aligning the icon and text vertically
HTML
<div id="opretForum">
<ul>
<li><a href="/opret-forum/">Opret Forum</a></li>
</ul>
</div>
CSS
#opretForum li {
list-style-image: url('/img/forum/tilfoj.png');
}
#opretForum ul {
list-style-position: inside;
}
Upvotes: 3
Views: 100
Reputation: 3755
As far as I know it ain't possible to align the list-style-image. The method that is often used is as follow:
li {
background: url('/img/forum/tilfoj.png') no-repeat left center;
padding: 3px 0px 3px 20px;
list-style: none;
}
Upvotes: 2
Reputation: 17134
something like this should work:
<style>
#opretForum li { list-style:none; background:url('/img/forum/tilfoj.png');vertical-align:middle }
</style>
<div id="opretForum">
<ul>
<li><a href="/opret-forum/">Opret Forum</a></li>
</ul>
</div>
Upvotes: 0