Remove colorpicker button/option - HexagonReborn
Remove colorpicker button/option
Is there any way to remove the button/feature or at least disable it?
-
- Registered User
- Posts: 1
- Joined: Wed May 30, 2018 6:12 am
Re: Remove colorpicker button/option
open hexagon.css
find #slideout and add after
before
after
find #slideout and add after
Code: Select all
z-index: 10;
Code: Select all
display: none;
Code: Select all
#slideout {
position: fixed;
top: 50px;
left: 0;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
background-color: #e9ebee;
padding: 7px;
z-index: 10;
}
Code: Select all
#slideout {
position: fixed;
top: 50px;
left: 0;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
background-color: #e9ebee;
padding: 7px;
z-index: 10;
display: none;
}
-
- Registered User
- Posts: 2119
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: Remove colorpicker button/option
This doesn't seem to be working. I've added "display: none;" after "z-index:10;" in hexagon.css and it hasn't changed anything.
Edit: More info.
It doesn't seem to be saving. I'm able to change it with Chrome's "Inspect" feature and it'll work, but obviously that's just temporary.
Edit edit: I fixed it. NVM. Thanks.
Edit: More info.
It doesn't seem to be saving. I'm able to change it with Chrome's "Inspect" feature and it'll work, but obviously that's just temporary.
Edit edit: I fixed it. NVM. Thanks.
-
- Registered User
- Posts: 33
- Joined: Mon Mar 04, 2013 9:11 pm
Re: Remove colorpicker button/option
Hi,texasbushcraft wrote:This doesn't seem to be working. I've added "display: none;" after "z-index:10;" in hexagon.css and it hasn't changed anything.
Edit: More info.
It doesn't seem to be saving. I'm able to change it with Chrome's "Inspect" feature and it'll work, but obviously that's just temporary.
Edit edit: I fixed it. NVM. Thanks.
What was your fix that you found? I am having the same problem: added "display: none;" on the appropriate line but still can see the color picker.
Thanks
-
- Registered User
- Posts: 2
- Joined: Tue Oct 16, 2018 3:55 am
Re: Remove colorpicker button/option
The latest release of the style (3.1.1) has an option to turn it off in the options.html file setib2018 wrote:Hi,texasbushcraft wrote:This doesn't seem to be working. I've added "display: none;" after "z-index:10;" in hexagon.css and it hasn't changed anything.
Edit: More info.
It doesn't seem to be saving. I'm able to change it with Chrome's "Inspect" feature and it'll work, but obviously that's just temporary.
Edit edit: I fixed it. NVM. Thanks.
What was your fix that you found? I am having the same problem: added "display: none;" on the appropriate line but still can see the color picker.
Thanks
Code: Select all
<!-- DEFINE $COLORPICKER = 'yes' --> Options: YES | NO
Last edited by Mannix_ on Wed Oct 17, 2018 9:28 am
-
- Registered User
- Posts: 2119
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: Remove colorpicker button/option
Ahh, gotcha. All good now. Thank you for the swift reply and the awesome theme!
-
- Registered User
- Posts: 2
- Joined: Tue Oct 16, 2018 3:55 am
Re: Remove colorpicker button/option
I've done this but it isn't working. Maybe there is another way to do it in the new version?
-
- Registered User
- Posts: 15
- Joined: Thu Mar 08, 2018 5:44 pm
Re: Remove colorpicker button/option
What did you do? Now you can turn it off in options.html fileatescetin83 wrote:I've done this but it isn't working. Maybe there is another way to do it in the new version?
Code: Select all
{% DEFINE COLORPICKER = 'yes' %} Options: YES | NO
-
- Registered User
- Posts: 2119
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: Remove colorpicker button/option
Yup, this is what I did, cleared the cache of the forum and the browser, but still I see the colour picker under user /control panel/board settings.Mannix_ wrote:What did you do? Now you can turn it off in options.html fileatescetin83 wrote:I've done this but it isn't working. Maybe there is another way to do it in the new version?Code: Select all
{% DEFINE COLORPICKER = 'yes' %} Options: YES | NO
-
- Registered User
- Posts: 15
- Joined: Thu Mar 08, 2018 5:44 pm
Re: Remove colorpicker button/option
Can you link me to your board with a dummy account so i can check it myself via pm ?? Because it works on my test board
-
- Registered User
- Posts: 2119
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt