署名のすぐ上にある「いいね」の灰色のバーを、右上にある小さなアイコンのある「いいね」リンクの左側に移動しようとしています。
例: http://www.talkjesus.com/bible-study-hall/44722-antimonianism.html#post220422
今のCSSコード
.vbseo_buttons .vbseo_liked {
background: rgba(46, 53, 57, .8);
color: #fff;
border: 0;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
clear: both;
display: block;
padding: 12px;
margin: 5px 30px;
<vb:if condition="$stylevar['textdirection'] == 'rtl'">
background-position: right;
</vb:if>
}
display: ブロックを display: inline に変更すると、次のように同じ行に移動します: http://i49.tinypic.com/348lonc.png
ただし、margin プロパティと width プロパティは失われます。width: 50%; を追加して幅を固定しようとしました。しかし、それは何も変わりませんでした。マージンと幅を固定しながらインラインに保つにはどうすればよいですか?