CSS to hide para text in Scribe below BP?

Is it poss to hide the text (paragraph) in a Scribe stack below a certain breakpoint (500)?

Or, am I better using two separate instances (one for header one for para) and have one hidden below the BP?

Tagging @tav

Ta.

If it just for one scribe on the page then give it a custom class e.g. hide-scribe-text and then use a simple media query

@media screen and (max-width:500px){
   .hide-scribe-text p{
      display:none
   }
}

It’s for four, but I’ll apply that to all four.

TVM.

1 Like