Skip to content
English
  • There are no suggestions because the search field is empty.

How to hide the Reserve Now button in the top bar

Learn how to hide the Reserve Now button in the navigation

To hide the Reserve Now button, follow these steps:

  1. Navigate to Custom Coding > CSS
  2. Add the following code:
    body .nav-desktop-book-container {
        display: none;
    }

    body .home-action-button.home-action-book-button {
        display: none;
    }

    body .mobile-book-now-banner {
        display: none;
    }