Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Style Specific Word? Reply To: CSS Style Specific Word?

#287008
Paulie_D
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;
}