Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Goodmorning,
I used the following CSS to remove the space between the logo and the menu:
.hgroup {
 max-width: none !important;
 }
.logo img {
 width: 100%;
 height: auto !important;
 }
.logo, #masthead, .hgroup {
 padding: 0 !important;
 }
 .support-text {
 display: none !important;
 }
This worked! But after this the padding of the menu changed which caused the stripes to fall away from the screen (website is hondentrimsalon.anita-reulings.nl)
How can I fix this? :)
Many thanks in advance!
Kind Regards,
Dionne


Hi Dionne
Thanks for reaching out.
If you’d like to, you could wrap your rules in a media query to limit when they are applied:
@media (min-width: 1024px) { /* Rules go in here */ }https://www.w3schools.com/css/css3_mediaqueries_ex.asp