Customize Firefox Web Page Appearance
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: Note that this will also make the frames appear with a fixed-width border and thus, may make the pages look funny.
Customize Firefox
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
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:// Force frames to be resizable
user_pref("layout.frames.force_resizability", true);
/* 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
Source : Mozilla.org
6:34 PM
|
Labels:
Firefox
|
This entry was posted on 6:34 PM
and is filed under
Firefox
.
You can follow any responses to this entry through
the RSS 2.0 feed.
You can leave a response,
or trackback from your own site.
0 comments:
Post a Comment