Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

How to change file:/// page format; get rid margin: 4em auto;

  • 2 réponses
  • 2 ont ce problème
  • 2 vues
  • Dernière réponse par cor-el

more options

I use Firefox off-line to manage many formats of private text and media files stored in folders on a removable flash drive. I created an HTML page split between a left index and right display area. The index frame holds links to folders or individual text, pdf or html files of personal information that are opened in the right display frame when clicked.

When I use Firefox and link to a folder the page format positions the folder information in the middle of the page with a margin "margin: 4em auto" while Chrome puts the folder information flush to the left. (See attached images) Is it possible to make the Firefox "file:///" information flush left to avoid all the wasted white space shown in the images below.

I use Firefox off-line to manage many formats of private text and media files stored in folders on a removable flash drive. I created an HTML page split between a left index and right display area. The index frame holds links to folders or individual text, pdf or html files of personal information that are opened in the right display frame when clicked. When I use Firefox and link to a folder the page format positions the folder information in the middle of the page with a margin "margin: 4em auto" while Chrome puts the folder information flush to the left. (See attached images) Is it possible to make the Firefox "file:///" information flush left to avoid all the wasted white space shown in the images below.
Captures d’écran jointes

Solution choisie

You can apply custom style rules to pages under file:///c using the Stylish extension or possibly a userContent.css file (I only tested Stylish).

For example:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("file:///c") {
  html {padding: 0 !important;}
  body {margin:8px !important;}
}

Example screen shot attached.

Lire cette réponse dans son contexte 👍 1

Toutes les réponses (2)

more options

Solution choisie

You can apply custom style rules to pages under file:///c using the Stylish extension or possibly a userContent.css file (I only tested Stylish).

For example:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("file:///c") {
  html {padding: 0 !important;}
  body {margin:8px !important;}
}

Example screen shot attached.

more options

You can find the CSS rules in this file that you can open via the location/address bar for inspection:

  • chrome://global/skin/dirListing/dirListing.css