Hello Boho Home Optin Widgit on mobile

QuestionsCategory: CustomizationHello Boho Home Optin Widgit on mobile
lnh1234 asked 3 years ago

I’m using the Hello Boho theme. I wanted to drop the Home Optin Widget lower so that it didn’t overlap with the Full Width Image Widget. In the Theme Editor, I changed line 326 of the style-front.css code to be: margin: -11px. That seemed to fix it on the desktop version, but it does not seem to be carrying over to the appearance on mobile. Any way for me to make this change carry over and look on mobile how it does on desktop? http://www.laurahintoncoaching.com

1 Answers
Support Team Staff answered 3 years ago

You can add this to your additional CSS.

@media only screen and (max-width: 1200px) {
.home-optin {
margin-top: 0;
}
}

@media only screen and (max-width: 399px) {
.home-optin {
margin-top: 0;
}
}