Make it stand out

Introduce your brand

Test Home Page

Making disciples means teaching people what to believe, how to obey, and how to walk intimately with God.

Code and Notes

// Hiding and showing sections
@media screen and (max-width: 641px) {
section[data-section-id="YOUR-SECTION-ID-HIDE-FROM-MOBILE"] {
 display:none !important;
  }
}
@media screen and (min-width: 641px) {
section[data-section-id="YOUR-SECTION-ID-HIDE-FROM-DESKTOP"] {
 display:none !important;
  }
}