Remove bookmark star icon from address bar

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.
Please direct questions that are Mac or Linux-specific (dealing with installation and OS integration) to the appropriate Linux or Mac board.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only. The main focus here is on Pale Moon on Windows. Please direct your questions that are specific for Linux and Mac to the dedicated boards for those operating systems.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
Locked
Adrian331

Remove bookmark star icon from address bar

Post by Adrian331 » 2015-09-18, 18:55

http://forum.palemoon.org/viewtopic.php?f=3&t=3663

Solution in above thread does not resolve issue for me. I have searched forum and not found anything that does the trick.

I click on Help - Troubleshooting information - click on Public Folder Show Folder. In the folder this brings up, there is a folder called chrome, I click on the chrome folder, there is a document called userChrome.css, in this file there is this exact text;

Code: Select all

/* Remove Bookmark Star in Search bar */
#star-button {
  display: none !important;
}
Restarted Pale Moon, restarted computer but bookmark star still appearing.

Version 25.7.0
Windows 10
32bit Pale Moon
Star visible with both themes Maxi4 1.1.1 and Default 25.7.0

Any help would be appreciated.

tenseys
Lunatic
Lunatic
Posts: 484
Joined: 2015-09-15, 09:09
Location: NYC

Re: Remove bookmark star icon from address bar

Post by tenseys » 2015-09-18, 22:16

I just tried to do it too after reading your post and I couldn't do it either at first.

One thing I would suggest is to make sure the userChrome.css file looks like this:
Untitled.png
I found that if you don't save it right as userChrome.css when you are creating it - it won't create a css file and it won't get rid of the star.
So for example put the code in the text file, save as File Name: userChrome.css and perhaps set Save as type to All files.

There is also an extension called ChromEdit Plus that can do it automatically.
Last edited by tenseys on 2015-09-19, 02:29, edited 4 times in total.
I'm using Pale Moon version 28.1.0 (64-bit) on Windows 10 Home 64-bit.

_Poke_
Lunatic
Lunatic
Posts: 279
Joined: 2013-03-31, 06:27
Location: Australia

Re: Remove bookmark star icon from address bar

Post by _Poke_ » 2015-09-19, 01:52

Like tenseys said, make sure you've saved it as userChrome.css not userChrome.css.txt
If that doesn't work, you could try to apply it using Stylish. The Stylish code would look like this:

Code: Select all

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url("chrome://browser/content/browser.xul"){
  /* Remove Bookmark Star in Search bar */
  #star-button {
    display: none !important;
  }
}
I like Stylish since it makes it easier to change the browser and see results instantly, no restart. You may want to avoid it if this is the only change you want though since it is another extension to run, making your browser that little bit more demanding.
"The good news is that we are rapidly running out of data for the bad guys to steal." (x)

Adrian331

Re: Remove bookmark star icon from address bar

Post by Adrian331 » 2015-09-19, 06:56

tenseys wrote:I just tried to do it too after reading your post and I couldn't do it either at first.

One thing I would suggest is to make sure the userChrome.css file looks like this:
Untitled.png
I found that if you don't save it right as userChrome.css when you are creating it - it won't create a css file and it won't get rid of the star.
So for example put the code in the text file, save as File Name: userChrome.css and perhaps set Save as type to All files.

There is also an extension called ChromEdit Plus that can do it automatically.
That worked thanks, what I did initially was create the document in the folder through right click - new text document, then open it make the changes necessary then save as, change the name to userChrome.css and change the Save as type to all files. This didn't update the actual format of the document so it wasn't getting rid of the bookmark star. Just needed to delete it and recreate it from within notepad itself.

Cheers

Locked