• Resolved ludvikl

    (@ludvikl)


    Hi, thank you for your perfect template. Is there any chance to hide the web background for one sinple page? Thanks.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • rodicaelena

    (@rodicaelena)

    Hi,

    To hide the background on just one specific page would require a small CSS adjustment that targets only that page.

    Here’s how to do it:

    1. Find the page ID or unique body class for the page you want to change. You can do this by viewing the page source and looking for a class like page-id-123 in the body tag.

    2. Add this custom CSS to your site under Customizer > Additional CSS:

    body.page-id-123 {
    background: none !important;
    }

    Make sure to replace 123 with your actual page ID.

    3. Save your changes and check the page. The background should now be hidden only on that page.

    This CSS targets just the page you specified, so the background will stay visible everywhere else on your site.

    Hope this helps.

    Kind regards,

    Rodica

    Thread Starter ludvikl

    (@ludvikl)

    Hi Rodica,
    thanks for your reply. The problem is, that the particular page is not created by a user, but by a plugin (The Events Calendar). That’s probably why I don’t see the identificator you advice. The generated page is https://www.klaster.cz/events.

    Thank you for your help.
    Ludvik

    rodicaelena

    (@rodicaelena)

    Hi Ludvik,

    In this case, you can use this custom CSS:

    body.post-type-archive-tribe_events {
    background: none !important;
    }

    Let me know if this helps.

    Kind regards,

    Rodica

    Thread Starter ludvikl

    (@ludvikl)

    Tnank you Rodica,
    the background of the page is now clear. But would be there a way to hide the header as well?

    Thanks, Ludvik

    rodicaelena

    (@rodicaelena)

    Hi,

    You could also add this to hide the header on that page:

    .post-type-archive-tribe_events .header {
    display:none !important;
    }

    Kind regards,

    Rodica

    Thread Starter ludvikl

    (@ludvikl)

    Thank you Rodica, excellent! You solved my problem perfectly!
    Have a nice day!
    Ludvik

    rodicaelena

    (@rodicaelena)

    Hi Ludvik,

    I’m glad I was able to help 🙂

    In case you want to share a couple of words about our support interaction, I invite you to leave me a small review here https://ww.wp.xz.cn/support/theme/neve/reviews/#new-post

    Thank you for considering this.

    Have a great day!

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

The topic ‘Hide web background for a simple page’ is closed to new replies.