Removing two front page buttons on mobile device

Hello,

I want to remove the two buttons at the front page on mobile device only.

Website: https://www.pmc-debleekerij.nl/

Thanks in advance.

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*hide buttons on mobile*/
@media (max-width: 550px){
  #header.header-front-page .bottom-header .header-button-one, #header.header-front-page .bottom-header .header-button-two  {
    visibility:hidden;
} 
}

Best regards,
Support.