Converting Full Width Button to Auto Size on medium screens (ie. 992px)

Greetings,

I’m trying to convert a button with a “full width” setting to “auto” at 992px. I cannot find the proper class to target, nor does it respect my custom class (using layout settings).

Can you post a code example and tell which element (or class) to target to make this happen?

Please advise.

Thanks,
Preston

Hey Preston,

Can you try the following please.

@media (max-width: 992px) {
  .my-custom-class .fl-button-width-full .fl-button {
    display: inline;
  }
}

Please, replace my-custom-class with your custom class. If this doesn’t work, can you provide a link to your site, please?

Thanks,
Danny

That did it. Thanks