Effacement 2nde ligne barre perso FF3
ga764
-
75karl Messages postés 1 Statut Membre -
75karl Messages postés 1 Statut Membre -
Bonjour,
le téléchargement de Firefox3 a effacé la 2nde ligne que j'avais ajouté à ma barre personnelle en rentrant ces codes dans le fichier userChrome.css :
/* Barre personnelle sur plusieurs lignes */
#bookmarks-ptf {display: block;}
#bookmarks-ptf toolbarseparator {display: inline; }
Pourtant, rien n'y fait, impossible de retrouver mon ancienne barre perso...
merci de votre aide !!!
le téléchargement de Firefox3 a effacé la 2nde ligne que j'avais ajouté à ma barre personnelle en rentrant ces codes dans le fichier userChrome.css :
/* Barre personnelle sur plusieurs lignes */
#bookmarks-ptf {display: block;}
#bookmarks-ptf toolbarseparator {display: inline; }
Pourtant, rien n'y fait, impossible de retrouver mon ancienne barre perso...
merci de votre aide !!!
A voir également:
- Effacement 2nde ligne barre perso FF3
- Partager photos en ligne - Guide
- Windows 11 barre des taches a gauche - Guide
- Mètre en ligne - Guide
- Formulaire en ligne de meta - Guide
- Barre des taches - Guide
1 réponse
salut,
mets ce code dans ton userchrome
code :
@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/* ====== BARRE PERSO SUR PLUSIEURS NIVEAUX DEBUT====== */
#personal-bookmarks
{
display:block !important;
min-height: 0px !important;
max-height: 500px !important;
height: auto !important;
overflow-y:visible !important;
}
#bookmarksBarContent
{
display:block !important;
min-height: 0px !important;
max-height: 500px !important; /*you can change*/
height: auto !important;
overflow-y:auto !important;
}
.places-toolbar-items
{
display:block !important;
height: auto !important;
}
#bookmarksBarContent toolbarseparator
{
display:inline !important;
}
#bookmarksBarContent .bookmark-item
{
visibility: visible !important;
}
.chevron
{
display:none !important;
}
.toolbar-drop-indicator-bar,
.toolbar-drop-indicator
{
margin-bottom:0px !important;
}
.toolbar-drop-indicator
{
background-position:0% 0% !important;
}
#bookmarksBarContent > vbox
{
display:-moz-stack !important;
}
/* ===Fixation de la police==== */
#bookmarksBarContent
{
max-height: 96px !important;
}
/* === /// BARRE PERSO SUR PLUSIEURS NIVEAUX FIN====== */
mets ce code dans ton userchrome
code :
@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/* ====== BARRE PERSO SUR PLUSIEURS NIVEAUX DEBUT====== */
#personal-bookmarks
{
display:block !important;
min-height: 0px !important;
max-height: 500px !important;
height: auto !important;
overflow-y:visible !important;
}
#bookmarksBarContent
{
display:block !important;
min-height: 0px !important;
max-height: 500px !important; /*you can change*/
height: auto !important;
overflow-y:auto !important;
}
.places-toolbar-items
{
display:block !important;
height: auto !important;
}
#bookmarksBarContent toolbarseparator
{
display:inline !important;
}
#bookmarksBarContent .bookmark-item
{
visibility: visible !important;
}
.chevron
{
display:none !important;
}
.toolbar-drop-indicator-bar,
.toolbar-drop-indicator
{
margin-bottom:0px !important;
}
.toolbar-drop-indicator
{
background-position:0% 0% !important;
}
#bookmarksBarContent > vbox
{
display:-moz-stack !important;
}
/* ===Fixation de la police==== */
#bookmarksBarContent
{
max-height: 96px !important;
}
/* === /// BARRE PERSO SUR PLUSIEURS NIVEAUX FIN====== */