From Fedora Project Wiki

< User:Pfrields

Revision as of 13:34, 15 July 2008 by Pfrields (talk | contribs) (New page: (mystylefunction() { var css = "@namespace url(http://www.w3.org/1999/xhtml); #content { font-size: 1.1em; } pre { font-size: 105%; } #content code { font-size: 105%; }"; var heads = d...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
(mystylefunction() {
    var css = "@namespace url(http://www.w3.org/1999/xhtml); #content { font-size: 1.1em; } pre { font-size: 105%; } #content code { font-size: 105%; }";
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
    var node = document.createElement("style");
    node.type = "text/css";
    node.appendChild(document.createTextNode(css));
    heads[0].appendChild(node); 
}
})();