ubuntuusers.de

firefox speichert aenderungen an der symbolleiste nicht

Status: Gelöst | Ubuntu-Version: Xubuntu 8.10 (Intrepid Ibex)
Antworten |

pedram

Anmeldungsdatum:
4. Februar 2008

Beiträge: 92

ich versuche seit eh und je die symbole "home" und "abbrechen" aus der navigationssymbolleiste zu entfernen, aber jedesmal wenn ich firefox neu starte wird die standarteinstellung wieder hergestellt. vohin habe ich eine neue symbolleiste erstellt und all die symbole die ich aus der navigationsleiste verwenden wollte rueber gezogen, die navigationsleiste dann ausgeblendet und neu gestartet, und wieder wurden die standarteinstellungen geladen. wikiasearch spuckt auch nichts aus.

kennt jemand das problem?

Fury1306

Avatar von Fury1306

Anmeldungsdatum:
5. Mai 2007

Beiträge: 318

xrolly

Avatar von xrolly

Anmeldungsdatum:
26. September 2007

Beiträge: 4322

Wohnort: NRW; 51° 39′ N, 7° 21′ O

Hallo pedram, kennst du das AddOn/Erweiterung ChromeEdit Plus von Firefox?

Damit koenntest du solche Sachen wohl hinbekommen, dabei kannst du die userChrome.css, userContent.css oder die user.js bearbeiten.

Ich habe z.Bsp. das Icon Neu Laden und Laden dieser Seite Stoppen damit in einem Icon bekommen.

Das muesste glaube ich der letzte Abschnitt in dieser userChrome.css - Datei sein (.. ist schon etwas her 😉):

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 */

/*
 * This file can be used to customize the look of Mozilla's user interface
 * You should consider using !important on rules which you want to
 * override default settings.
 */

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */


/*
 * Some possible accessibility enhancements:
 */
/*
 * Make all the default font sizes 20 pt:
 *
 * * {
 *   font-size: 20pt !important
 * }
 */
/*
 * Make menu items in particular 15 pt instead of the default size:
 *
 * menupopup > * {
 *   font-size: 15pt !important
 * }
 */
/*
 * Give the Location (URL) Bar a fixed-width font
 *
 * #urlbar {
 *    font-family: monospace !important;
 * }
 */

/*
 * Eliminate the throbber and its annoying movement:
 *
 * #throbber-box {
 *   display: none !important;
 * }
 */

/*
 * For more examples see http://www.mozilla.org/unix/customizing.html
 */

 tabbrowser-tabs .tab-text {
 color: #c28008 !important;
}

.toolbarbutton.bookmark-item > .toolbarbutton-text {
 color: #c28008 !important;
}

.menubar-text {
 color: #c28008 !important;
}

tab{
-moz-appearance: none !important;
}
tab[selected="true"] {
background-color: rgb(188,188,188) !important;
color: black !important;
}

tab:not([selected="true"]) {
background-color: rgb(155,155,155) !important;
color: lightgray !important;
}

.menulist, menu, menuitem {
color: blue !important;
}

menuitem
{color: #35383f !important;}

.toolbarbutton-text {
color: #c28008;
}

.statusbarpanel-text {
color: #c28008 !important;
}

nav-bar {
background-color: #ff6600 !important;
}

#urlbar,
.searchbar-textbox
{-moz-appearance: none !important;
background-color: silver !important;}

#stop-button:not([disabled="true"]) { display: -moz-box !important; }
#stop-button[disabled="true"] { display: none !important; }
#stop-button[disabled="true"] + #reload-button { display: -moz-box !important; }
#stop-button:not([disabled="true"]) + #reload-button { display: none !important; }

/* Display the Tabbar at the bottom */
#content > tabbox {-moz-box-direction: reverse;}

Versuch es mal damit hin zu bekommen..😉.

Netten Gruss, xrolly

pedram

(Themenstarter)

Anmeldungsdatum:
4. Februar 2008

Beiträge: 92

ah, ich hatte schon vermuetet das es auf div. addons zurueckzufuehren sein muss! suchfunktion hat bei nichts ergeben, sorry.

und das plugin kenn ich nicht. mal austesten:)

danke!!

Antworten |