Søg i Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Form checkboxes styling lost in Firefox browser

  • 5 svar
  • 1 har dette problem
  • 75 visninger
  • Seneste svar af TyDraniu

more options

Hi,

I made CSS styling for form checkboxes that won't appear in Firefox browser. Could you please how can I get my stylings revealed in Firefox?

URL: https://www.almatalent.fi/tilaa-koulutusten-asiakaskirje/

Screenshot provided

Hi, I made CSS styling for form checkboxes that won't appear in Firefox browser. Could you please how can I get my stylings revealed in Firefox? URL: https://www.almatalent.fi/tilaa-koulutusten-asiakaskirje/ Screenshot provided
Vedhæftede skærmbilleder

Valgt løsning

You have to remove width: 0; height: 0;. That's all.

Læs dette svar i sammenhæng 👍 0

Alle svar (5)

more options

Did you test it in another browser? It looks similar.

It's because you have:

form input[type="checkbox"] {
 width: 0;
 height: 0;
}
more options

It's working correctly on safari & chrome and even IE. See attached.

more options

Added -moz-appearance: none; and no success

more options

Valgt løsning

You have to remove width: 0; height: 0;. That's all.