Code to disable slogan in a normal rapidweaver theme

Hej I am working on a project for a School in Ghana. I am doing this for free off course. So I am just using a theme so I do not have to spend too much time on it. The theme I am using does not have any option to disable the slogan on mobile. Anyone know of a code I can use to disable it?

Kind Regards
Kent

Hi @Kent - what theme is it / do you have a url?

Sorry, ignore me I missed the mobile bit

Hej Stuart Yes it a Weaverthemes theme, Cube, but it is stripped for most of the elements, I am just using the basic theme. the url are https://www.neohumanistschool-gh.org/ I should have used another theme for this, but if you can help it will be wonderful :-) There is a lot of animations, they have to go before I am finished. They make the pages very heavy.

Hi. - this should do it:

@media only screen and (max-width: 768px) {
#header > .title span {
    display: none;
}
}

Hej Mr. Stuart, yes that did it :-) Thank you very much.