Forum Moderators: not2easy
<li> blah blah <a href="blah.html">[b][P][/b]</a>
ul.artist li {
background:transparent;
font:16px/22px times new roman,times roman,serif;
margin-right:0;
}
ul.artist a {
font-size:12px;
margin-left:5px;
[b]margin-bottom:2px;[/b]
}
ul.artist li a {
font: inherit;
}
If you have this:
<ul class="artist">
<li> blap bgah <a href="blah.html">[P]</a></li>
</ul>
instead you will see the [P] is actually aligning itself with the bottom of the "p" & "g" (the descenders).
so if you add vertical-align: middle; to the link CSS that should make it look like you want
Suzy