Home Forums WoodMart support forum Hide Page Title but keep Background Image

Hide Page Title but keep Background Image

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #721676

    jzaghasiddiqui
    Participant

    Hi Support,

    How can I hide Category Page’s or Page’s title text but keep the background image in place? Also, what is right size for image to be used for Page Title? What dimensions should I use? Please guide

    #721725

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Please add the following Custom CSS code to Theme Settings > Custom CSS:

    /* Hide the title text container ONLY on product category archive pages */
    .tax-product_cat .wd-page-title .container {
        display: none !important;
    }
    
    /* Apply the custom background banner height ONLY on product category archive pages */
    .tax-product_cat .wd-page-title {
        min-height: 300px; /* Adjust this value to control your category image banner height */
    }

    For the image banner size, try to upload a 1180 by 300 pixels image.

    Best Regards

    #721732

    jzaghasiddiqui
    Participant

    Thanks, it is working on Category pages. But how can I make it work on other webpages as well like on Shop or About Us or Contact Us?

    #721740

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    To apply the same effect on regular pages, such as Shop, About Us, and Contact Us, you can use the following CSS instead:

    /* Hide page title text but keep the background image */
    .wd-page-title .container {
        display: none !important;
    }
    
    /* Set banner height */
    .wd-page-title {
        min-height: 300px;
    }

    Please note that this CSS will affect all pages that use the WoodMart Page Title area.

    Best Regards

    #721750

    jzaghasiddiqui
    Participant

    This latest code will work on Category pages and Normal pages all the same?

    #721780

    jzaghasiddiqui
    Participant

    Thank you, this issue is resolved.

    #721796

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    You’re Most Welcome!

    If you have a minute, we’d truly appreciate your feedback — it helps us improve the product and shape future updates more effectively. We’d love your feedback on our theme: https://www.trustpilot.com/review/xtemos.com

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards.

Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘Hide Page Title but keep Background Image’ is closed to new replies.