css - Text center ul pagination in div wordpress -
i've been trying center content contains ul pagination. margin-left , margin0right center div, text-align: center won't center content inside.
here's code:
css
/* pagenation */ .article .pagelinks { text-align: center !important; display: table; margin-left: auto; margin-right: auto; width: 240px; position: relative; overflow: hidden; padding: 0; clear: both; } .article .pagelinks ul { list-style:none; text-align: center; margin: auto; padding: 0; } .article .page-numbers li {display:inline;} .article .page-numbers li {display:block; float:left; padding:4px 9px; margin-right:7px; color: #911d23;} .article .page-numbers li span.current {display:block; float:left; padding:4px 9px; margin-right:7px; background-color: #fff; color: #911d23;} and here's link web page in question: http://disa.com.sv/constructora/?page_id=10&paged=2.
how text-align center or center things?
try :
.article .page-numbers li{display:inline-block}
Comments
Post a Comment