I want to customize a site's css and save for Mozilla to load. so that when Mozilla loads an html from that url, it uses my css files instead of the foreign ones. I dont know how to get Mozilla to do this, when I make a new request to the url, the site's css is loaded instead of mine. How do I set this up?
|
The most straightforward way for most of us would be using the Mozilla Firefox addon called Stylish. It lets you write, save and use own stylesheets for a particular page or domain, overriding (if necessary) parts of authors own rule(s). Under the hood it's not much more than built-in Firefox facilities though - you have the This is all at the heart of CSS actually. It is more or less designed to allow users to override authors stylesheets, and Firefox makes it somewhat easy to do that. You can obtain a much more extensive explanation here. |
||||
|
|
|
For that You can scan user Agent and find out which browser, its version. Including the OS for OS specific styles You can use various CSS Hacks for specific browser Or Scripts or Plugins to indentify the browser and apply various classes to the elements Using jQueryWhat you're after is known as browser detection:
However, browser sniffing is discouraged, as its easy to spoof the user agent, i.e. pretend to be another browser! You'd best use feature detection, either in your own way, or through the jQuery.support interface: http://api.jquery.com/jQuery.support/ Here's an article on extending it for your own use: http://www.waytoocrowded.com/2009/03/14/jquery-supportminheight/ Using PHPSee
Then then create the dynamic CSS file as per the detected browser Here is a CSS Hacks list Selector Hacks
Source: http://paulirish.com/2009/browser-specific-css-hacks/ If you want to use Plugin then here is one |
||||
|
|
|
Take a look at the greasemonkey plugin: https://addons.mozilla.org/de/firefox/addon/greasemonkey/ |
|||
|
|
