Customize Firefox Web Page Appearance

Ad Blocking

Advertisements on websites are annoying, often breaking up text and flashing to get your attention. There is a neat trick that you can use to block most of the ads on Web pages.

Because of the length of the code in this tip, it is available in a separate page.

Disable blinking elements

You probably just find the blinking above annoying. To stop it, add the following code to your user.js file:

// Put an end to blinking text!
user_pref("browser.blink_allowed", false);
Disable marquee tags

Some sites using scrolling marquee tags. If you don’t find them useful, add the following code to your userContent.css file:

/* Stop those tags! */
marquee {
-moz-binding : none !important;
display : block;
height : auto !important;
}

Force frames to be resizable

Many sites use frames to display their contents, and sometimes the frames are too small. To force all frames to be resizable, add the following code to your user.js file:

// Force frames to be resizable
user_pref("layout.frames.force_resizability", true);

Note that this will also make the frames appear with a fixed-width border and thus, may make the pages look funny.

Change the cursor for links that open in new window

This neat trick will change the mouse pointer when you hover it over links that will open a new window. Add the following code to your userContent.css file:

/* Change cursor for links that open in new window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"], :visited[target="_new"] {
cursor: crosshair;
}
Change the cursor for JavaScript links

This tip will change the mouse pointer when you hover it over links that will perform a JavaScript command. Add the following code to your userContent.css file:

/* Change cursor for JavaScript links */
a[href^="javascript:"] {
cursor: move;
}

Download Firefox: GetFirefox.com
Source : Mozilla.org

Leave a Reply

Your email address will not be published. Required fields are marked *