Sticky Best Answer

Changing the "whoops" page image via CSS

  • 17 November 2021
  • 30 replies
  • 1407 views


Show first post

30 replies

Userlevel 7
Badge +3

Hello it doesn’t seems to work for me this is how i am trying to do this:

Hope someone can help!

 

Is there a reason you are putting it in the 6.9 custom and not the 7.0?

Userlevel 3
Badge

Does anyone know how to remove the image altogether using CSS so that it doesn’t take up all that space?  @Bfarkas, would love if you might consider adding this to Farktools?  https://fark.tools/   

Userlevel 7
Badge +3

Does anyone know how to remove the image altogether using CSS so that it doesn’t take up all that space?  @Bfarkas, would love if you might consider adding this to Farktools?  https://fark.tools/   

So the current solve above does this, and then shows a new thing, have you tried just putting the hide part?

doc-widget-channels ui-illustration.ui-illustration svg,doc-widget-course-catalog ui-illustration.ui-illustration svg, doc-widget-my-courses-and-learning-plans  ui-illustration.ui-illustration svg{
visibility: hidden;
}

 

Userlevel 7
Badge +3

Ah, you prob want the space gone too right? If you make the above less specific, so its not just the iamge, but the container, should work:

doc-widget-channels ui-illustration,doc-widget-course-catalog ui-illustration, doc-widget-my-courses-and-learning-plans  ui-illustration{
display:none;
}

 

Userlevel 3
Badge

Thank you @Bfarkas that’s exactly what I was hoping for and it worked! :) 

Reply