Hi, i was trying to change the background of the pocket stories in the Firefox homepage with this code

@-moz-document url("about:home"), url("about:newtab"){
  div.meta{
    background-color: #08111c !important;
  }
}

yet the pocket stories are still the same default grey color.

What is wrong with my code?

  • @MrOtherGuy
    link
    English
    11 year ago

    Okay, your userContent.css is missing a closing bracket } in a few places, that’s probably what is causing the issue.

    You need to close your @-moz-document blocks before opening a new one.

    • HuesseinbergOP
      link
      English
      11 year ago

      Yeah that was the culprit thank you so much! It now works.