+ Reply to Thread
Results 1 to 2 of 2

Thread: How to centre headings?

  1. #1
    Guru
    Join Date
    Jul 2019
    Location
    Australia
    Posts
    657

    How to centre headings?

    How can i centre headings of content boxes with css?

  2. #2
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    text-align: center;

    find the css for the header you want to change and add the above to the bottom of that css block.

    example

    li.title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* max-height: 45px; */
    font-size: 1.0em;
    font-weight: 400;
    text-align: center;
    Getting Started or Starting Over with Your Classified Site? then Get Ready Set Fly V 4.7.1 > quietSecrets.net

+ Reply to Thread