Discussion of general topics about Mozilla Firefox
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 7th, 2002, 1:55 am
This code, added to userChrome.css, kills "normal" bookmark icons in the bookmarks menu:
menuitem.bookmark-item > .menu-iconic-left {
display: none;
}
How do you do the same thing for (a) the bookmark manager and (b) the location bar?
cdn

Posts: 999Joined: November 4th, 2002, 5:47 pmLocation: UK
Posted November 7th, 2002, 2:34 am
shoestring wrote:How do you do the same thing for (a) the bookmark manager
try treechildren:-moz-tree-image(Name), treechildren:-moz-tree-image(Name, container) { list-style-image: none !important; } shoestring wrote: and (b) the location bar?
try
#page-proxy-button {
list-style-image: none !important;
}
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 7th, 2002, 6:19 am
cdn wrote:shoestring wrote:How do you do the same thing for (a) the bookmark manager
try treechildren:-moz-tree-image(Name), treechildren:-moz-tree-image(Name, container) { list-style-image: none !important; } shoestring wrote: and (b) the location bar?
try #page-proxy-button { list-style-image: none !important; }
OK, those both work, <B>but</B> they leave a large empty space at the left of the URL in both (a) and (b). How can I close up that space?
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 7th, 2002, 10:17 pm
shoestring wrote:cdn wrote:shoestring wrote:How do you do the same thing for (a) the bookmark manager
try ... OK, those both work, <B>but</B> they leave a large empty space at the left of the URL in both (a) and (b). How can I close up that space?
I was <I>almost</I> correct there, but it turns out "file://" links still display an icon (a Netscape 4.x icon, at that). Otherwise, it's just a large space.
Still looking for a way to fix this ...
Stefan

Posts: 2051Joined: November 5th, 2002, 2:46 am
Posted November 8th, 2002, 2:13 am
shoestring wrote:I was <I>almost</I> correct there, but it turns out "file://" links still display an icon (a Netscape 4.x icon, at that). Otherwise, it's just a large space.
You are awar that the correct syntax calls for eg file:///C:/blabla (ie 3 x / after file:)
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 8th, 2002, 2:26 am
Stefan wrote:shoestring wrote:I was <I>almost</I> correct there, but it turns out "file://" links still display an icon (a Netscape 4.x icon, at that). Otherwise, it's just a large space.
You are awar that the correct syntax calls for eg file:///C:/blabla (ie 3 x / after file:)
Yeah. That was a typo.
cdn

Posts: 999Joined: November 4th, 2002, 5:47 pmLocation: UK
Posted November 8th, 2002, 3:55 am
Stefan wrote:You are aware that the correct syntax calls for eg file:///C:/blabla (ie 3 x / after file:)
file:///c|/blabla surely; I know don't call you Shirley
you are also aware that *nix has no concept of drive letters
therefore : file:///home/username/blabla ...
cdn

Posts: 999Joined: November 4th, 2002, 5:47 pmLocation: UK
Posted November 8th, 2002, 3:58 am
shoestring wrote: OK, those both work, <B>but</B> they leave a large empty space at the left of the URL in both (a) and (b). How can I close up that space?
try this
treechildren:-moz-tree-image(Name),
treechildren:-moz-tree-image(Name, container),
#page-proxy-button {
list-style-image: none !important;
visibility: collapse !important;
}
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 8th, 2002, 3:12 pm
cdn wrote:shoestring wrote: OK, those both work, <B>but</B> they leave a large empty space at the left of the URL in both (a) and (b). How can I close up that space?
try this treechildren:-moz-tree-image(Name), treechildren:-moz-tree-image(Name, container), #page-proxy-button { list-style-image: none !important; visibility: collapse !important; }
That doesn't seem to work, neither for the URLbar nor the Manager.
cdn

Posts: 999Joined: November 4th, 2002, 5:47 pmLocation: UK
Posted November 9th, 2002, 8:15 am
shoestring wrote:cdn wrote:shoestring wrote: OK, those both work, <B>but</B> they leave a large empty space at the left of the URL in both (a) and (b). How can I close up that space?
try this treechildren:-moz-tree-image(Name), treechildren:-moz-tree-image(Name, container), #page-proxy-button { list-style-image: none !important; visibility: collapse !important; }
That doesn't seem to work, neither for the URLbar nor the Manager.
I did say 'try'
however;
treechildren:-moz-tree-image(Name),
treechildren:-moz-tree-image(Name, container),
#page-proxy-button {
list-style-image: none !important;
visibility: collapse !important;
width: 0 !important;
}
really ought to work (untested)
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 9th, 2002, 6:31 pm
cdn wrote: I did say 'try'
however;
treechildren:-moz-tree-image(Name), treechildren:-moz-tree-image(Name, container), #page-proxy-button { list-style-image: none !important; visibility: collapse !important; width: 0 !important; }
really ought to work (untested)
 No criticism implied!!!
That said, the above worked for the Bookmark Manager <B><I>Yaaaaaay!!</I></B> ... but not in the URLbar. No icon in the bar, but a space - as before. But, hey, I'm happy!
Thanks!
cdn

Posts: 999Joined: November 4th, 2002, 5:47 pmLocation: UK
Posted November 10th, 2002, 7:16 am
therefore :
#page-proxy-deck,
#page-proxy-button,
#page-proxy-favicon {
width: 0 !important;
margin: inherit 0 inherit 0 !important;
}
shoestring

Posts: 156Joined: November 5th, 2002, 3:40 pmLocation: Geekhaven, MA, USA
Posted November 10th, 2002, 2:50 pm
cdn wrote:therefore :
#page-proxy-deck, #page-proxy-button, #page-proxy-favicon { width: 0 !important; margin: inherit 0 inherit 0 !important; }
<B>Worked!</B>
Many thanks.
Return to Firefox General
Who is online
Users browsing this forum: No registered users and 1 guest
|