wordpress - Aligning Bullet w/Text in Recent Post Widget Extended Plugin -
i'm using wordpress>atahualpa theme>recent posts widget extended on site toawaken.org.
recent posts listed in r.h. sidebar. have added "bullet" (disc) in front of each post title. when did so, threw spacing off.
if link site, see reason added bullet forcing text appear 1 line below bullet, instead of right next it, on same line bullet, should. want post's title line on same line bullet, not 1 line below it. tried adjusting margins/padding in css editor, no margin/padding combination changed this. nor did changing div list-style-position inside outside:
div.widget ul li { display: list-item !important; list-style: disc !important; list-style-position: inside; color: #2d85ba; }
if please check sidebar on site , offer remedy, appreciated.
this plugin seems have clearfix implemented in <li>
elements, , it's pushing headers next line. can override css:
.rpwe-clearfix:before, .rpwe-clearfix:after { content: none; }
as side note, try not use !important
expression in stylesheets. you'll end having more , more difficulties changing css rules. if want everride rule, use selector bit stronger specificity 1 want change. can read more selectors' specificity here.
Comments
Post a Comment