No css output with css added in global css

Hi,

I have styled a link with a custom css class, but it doesn’t output good. I’ts about a mailto link with an e-mailadress that supposed to be blue, but it comes out red.

De site is secure, so I’ll leave a secure not with login credentials.

Thanks!

Jan

Hello Jan,

Thanks for writing in! You are having this issue because in the two headline elements you have added on the first bar in your custom footer, you added this broken CSS:

@media screen and (max-width: 800px) { 
  $el {
  font-size: 0.7em!important;
}

You should update it and properly closed the @media block:

@media screen and (max-width: 800px) { 
  $el {
  font-size: 0.7em!important;
  }
}

Kindly let us know how it goes.

Great, thanks for your help!

You are most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.