HOW TO change the look of websites you don't own within your browser

You can change the look of websites that you don't own within your browser by hiding or manipulating elements within the web page using Developer Tools (usual keyboard shortcut - F12) that come natively with the browser.

The website redesign of a newspaper website that I read takes up nearly a third of the browser real-estate on my 15 inch laptop.


As that site supports jQuery, the command to type to hide the header is simple: $(".header").hide()

Using JavaScript & CSS, you can change the original style settings to your own liking.

Also see:

Comments