Reply To: Can I make hooks open only on certain pages?

Home Forums Support Can I make hooks open only on certain pages? Reply To: Can I make hooks open only on certain pages?

Home Forums Support Can I make hooks open only on certain pages? Reply To: Can I make hooks open only on certain pages?

#71535
Tom
Lead Developer
Lead Developer

Hi there,

That’s because you’re using inline styles which you can’t tweak for mobile.

You may want to try adding a class to your div, and then applying your css to the div when not in mobile:

@media screen and (min-width: 769px) {
      .sample-class {
            margin-top:-219px;
            margin-bottom:130px;
            margin-left:10%;
      }
}