Effacement 2nde ligne barre perso FF3

Fermé
ga764 - 19 juin 2008 à 19:45
75karl Messages postés 1 Date d'inscription samedi 5 juillet 2008 Statut Membre Dernière intervention 5 juillet 2008 - 5 juil. 2008 à 22:34
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 !!!
A voir également:

1 réponse

75karl Messages postés 1 Date d'inscription samedi 5 juillet 2008 Statut Membre Dernière intervention 5 juillet 2008
5 juil. 2008 à 22:34
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====== */
0