Home › Forums › CSS › CSS Style Specific Word? › Reply To: CSS Style Specific Word?
April 27, 2019 at 2:39 am
#287008
Member
.geodir-aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
max-width: fit-content;
text-align: center; /* add this */
}
Unfortunately, this will also align the actual dates to the center so you’d have to override that for them.
.geodir_post_meta {
text-align: left; /* add this */
text-indent: .25px;
}