• Hi Nate,

    In my desktop version you can not see the hours in which you can not book, but in the mobile version they appear, how can we not show them in the mobile version?

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

Viewing 1 replies (of 1 total)
  • Hi @josuesantana,

    It looks like you have the code to hide the unused hours inside of a media query that is never closed:

    
    @media (min-width: 992px) {
    
    	.rtb-booking-form fieldset {
    		float: left;
    		width: 50%;
    		padding: 1em;
    	}
    .rtb-booking-form .add-message {
      display: none;
    }
    
    .rtb-booking-form .contact .message {
      position: relative;
      top: auto;
      left: auto;
    }
    .picker__list-item--disabled {
      display: none;
    }
    

    This line has an opening bracket, {, that’s never closed:

    
    @media (min-width: 992px) {
    

    That means all the code below will only apply to screens larger than 992px.

Viewing 1 replies (of 1 total)
  • The topic ‘Just show the reservation hours on mobile’ is closed to new replies.