• Resolved Jane Milburn

    (@jane-milburn)


    I have a Twenty Fourteen child theme.
    plinthart.com
    Page with problem; https://www.plinthart.com/store
    I would like to centre the price(that is not the real price by the way!).
    I am using the iThemes Exchange plugin. I have not found the answer anywhere else.
    In Firebug I found some code that works in placing the price right or left but it will not work for centre?

    #it-exchange-store .it-exchange-base-price {
    float: left;
    font-size: 1em;
    }
    Any ideas please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add this CSS to the end of your custom CSS:

    #it-exchange-store .it-exchange-base-price {
        float:none;
        margin-right: auto;
        margin-left: auto;
        display: table;
    }

    Thread Starter Jane Milburn

    (@jane-milburn)

    Thank you so much it worked, this has been driving me mad for two days. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS needed to centre font.’ is closed to new replies.