1. Hello Guest!

    Thank you for visiting the ClubRunner Community website, you can login using your ClubRunner account information by clicking the login link on the top of every page.
    Dismiss Notice

How do you create a custom page without a site banner.

Discussion in 'Website Customization' started by Mark Call on Dec 27, 2023.

  1. Mark Call

    By:Mark CallDec 27, 2023
    Community Member

    Joined:
    Sep 15, 2017
    Messages:
    23
    Likes Received:
    8
    Location:
    Info Tech (Retired)
    I don't want to delete the banner for fear it will remove the banner from every page on the site.

    Thank you. Mark

    PS lovin' Membership Success module. ❤️
     
  2. Zach

    By:ZachJan 26, 2024
    Moderator
    ClubRunner Team

    Joined:
    Jun 5, 2017
    Messages:
    592
    Likes Received:
    80
    Gender:
    Male
    Occupation:
    Product Specialist
    Location:
    ClubRunner
    Hi Mark,

    This is a great question! By default for customers accounts, there is not a way to have a different (or no) banner on that individual page. That is shared across the entire website. Through custom CSS, in many cases you would be able to handle this, and it will also depend on the theme. I can share some code that should work for your own club account, but our team is not able to directly support custom HTML and CSS. Think of this doing my best to point you in the right direction!

    Based on your club's current theme, if you include this HTML within the source mode button on your site page, it should hide/stop showing the banner.

    HTML:
    <style type="text/css">
     div#bannerContainer {
        display: none;
    }
    </style>
    Let us know how it goes!
     
Top