Bookmark icons question

Discussion of general topics about Mozilla Firefox
Post Reply
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Bookmark icons question

Post by shoestring »

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: 999
Joined: November 4th, 2002, 5:47 pm
Location: UK
Contact:

Re: Bookmark icons question

Post by cdn »

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;
}
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Re: Bookmark icons question

Post by shoestring »

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?
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Re: Bookmark icons question

Post by shoestring »

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 ...
User avatar
Stefan
Posts: 2051
Joined: November 5th, 2002, 2:46 am

Re: Bookmark icons question

Post by Stefan »

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:)
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Re: Bookmark icons question

Post by shoestring »

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: 999
Joined: November 4th, 2002, 5:47 pm
Location: UK
Contact:

Re: Bookmark icons question

Post by cdn »

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 :mrgreen:

therefore : file:///home/username/blabla ...
cdn
Posts: 999
Joined: November 4th, 2002, 5:47 pm
Location: UK
Contact:

Re: Bookmark icons question

Post by cdn »

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;
}
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Re: Bookmark icons question

Post by shoestring »

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: 999
Joined: November 4th, 2002, 5:47 pm
Location: UK
Contact:

Re: Bookmark icons question

Post by cdn »

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)
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Re: Bookmark icons question

Post by shoestring »

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)



:mrgreen: :!: 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: 999
Joined: November 4th, 2002, 5:47 pm
Location: UK
Contact:

Post by cdn »

therefore :

#page-proxy-deck,
#page-proxy-button,
#page-proxy-favicon {
width: 0 !important;
margin: inherit 0 inherit 0 !important;
}
User avatar
shoestring
Posts: 156
Joined: November 5th, 2002, 3:40 pm
Location: Geekhaven, MA, USA

Post by shoestring »

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.
Post Reply