Hide portion of website on mobile devices Dawn Theme

Hi all,

Is it possible to hide a section of my website on mobile devices? The section I would like to hide is the collapsible content on my website. This is using the Dawn theme. Any help would be greatly appreciated. You can see my website by visiting www.PennsylvaniaParks.org.

Thanks in advance!

1 Like

Yes, it is possible to hide a section of your website on mobile devices using CSS media queries. In the case of the collapsible content section in the Dawn theme, you can add some CSS code to hide it specifically on mobile devices.

@media (max-width: 767px) {
  /* Hide the collapsible content section on mobile devices */
  .collapsible-content-section {
    display: none;
  }
}

Hi @Justin34 ,

Yes it is possible to hide. Can you be more specific which page and content you want to hide?

Thanks!