• Whenever I enable the LearnPress plugin it overrides my color settings for the theme. When I inspect the page and turn off the white background CSS it looks as it is supposed to. The body code that it is referencing is the LearnPress CSS.

    I have so far been unsuccessful in attempting to deactivate the LearnPress background CSS.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter TheJaredIsham

    (@thejaredisham)

    I found the culprit in the learnpress CSS file but I can’t seem to override it when adding custom CSS to my site through Elementor or Appearance customization.

    Near the bottom of the LearnPress CSS it has this entry.

    /*  start reset css */
    body {
      background: #fff;
    }

    For now, I just disabled the code but I fear it will revert back on a plugin update. Any suggestions?

    Plugin Support brianvu-tp

    (@briantp)

    Hi,

    You can use this code to override our css

    
    body {
      background: your_color !important;
    }
    

    Thanks

    Thread Starter TheJaredIsham

    (@thejaredisham)

    Tried that and it wouldn’t override the setting for some reason.

    I was trying to use

    body {
      background: transparent !important;
    }

    For some reason, it would not work.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Learnpress Overriding Them Styling’ is closed to new replies.