Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #100436

    Will M
    Participant

    I’m using Integrity Light with WooCommerce. I’d like to have the headings on the Shop and Category pages centered. See http://morganjane.com/catalog/ and category page, e.g. http://morganjane.com/catalog/wall-coverings/.
    In other themes, the titling / headings are centered so I suspect it is particular to the X theme. So probably in the integrity-light.css but I’m unable to find it.
    Can someone help?
    Thanks,
    Bill
    Wordpress 4.0 (but applies to previous version as well)
    X Integrity Light theme

    #100475

    Christian
    Moderator

    Hey Will,

    The main title is centered as designed but you have the custom CSS below

    .x-header-landmark {
    margin: 34px auto 0;
    text-align: left;
    }

    Please change left to center. For the product category titles, please add the code below in the Customizer > Custom > CSS.

    .product-category h3 {
        text-align: center;
    }

    Hope that helps. 🙂

    #100751

    Will M
    Participant

    Thanks. That was easy!
    Can you suggest a similar tweak for the category page, e.g. http://morganjane.com/catalog/small-wonders/?
    Will

    #100755

    Cousett
    Member

    Try adding some CSS code under Appearance -> Customize -> Custom -> CSS

    body.term-small-wonders header.entry-header h3 {
    text-align: center;
    }
    #100793

    Will M
    Participant

    That worked!
    Thank you very much.
    Will

    #100795

    Zeshan
    Member

    You’re welcome Will! 🙂