I tried this already:
#top #wrap_all #text-7 .textwidget h1 {
font-weight: 100;
}
But it didn’t change a thing. The textwidget still looks different on the startpage and on all subpages. I want it to look as slim as it does on the startpage.
Hi,
Wrap this code inside one of your css media queries.
#top #wrap_all #text-7 .textwidget h1 {
display: none !important;
}
That code should hide the text on mobile view.
By “css media queries”, I am referring to this code.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
}
Add the code inside.
Best regards,
Ismael