Find the CSS code to hide anything using Opera Dragonfly
Thursday, September 29, 2011 10:43:47 AM
User style sheet can be used to modify the look of a website. Even if you don't know anything about CSS you can find code to hide anything using Opera Dragonfly
as shown below.
-
Right click on the item you want to hide and select 'Inspect Element' from the context menu. Opera Dragonfly will open and highlight the element with blue color depending on where you clicked.

Ad is highlighted but the text 'Ad' is not highlighted - Click one by one (in this example li.tas, ol, div#tads.c, ...) from bottom right side until everything you want to hide is highlighted.

Both Ad and text 'Ad' are highlighted - Select and copy code from bottom and add the following at the end.
{display:none !important;}The final code looks like the following.div#tads.c {display:none !important;} - Save the CSS code to a file with css extension.
- Close Opera Dragonfly.
- Reload page to apply the style sheet.




















