Best Answer

CSS to remove boxes around html widget

  • 14 April 2023
  • 3 replies
  • 219 views

Userlevel 2

Does anyone know if there is CSS to hide the boxes that automatically form around the HTML widget when you add it it pages?

The part in the red circle

Thanks!!

icon

Best answer by Bfarkas 14 April 2023, 17:08

View original

3 replies

Userlevel 7
Badge +3

Think you mean the drop shadow on them? 

Broadly it is:

.wrapper-shadow {
box-shadow: none;
}

You can make it widget or page specific by adding 

#doc-page-[number] or #doc-widget-[number] in front of the .wrapper-shadow above.

I know you have this triggered on a profile on Fark.Tools too, that is my preferred method :)

Userlevel 2

@Bfarkas this is what I was talking about in our message

Userlevel 7
Badge +5

This question and answer just made my day…  Thank you @KyleRBennett and @Bfarkas 

Reply