tomnjerry74 97 Posted August 20, 2020 Posted August 20, 2020 (edited) Hello, Does anyone know if it's possible to completely remove the various theming options in the user's "Display" settings? Edited August 20, 2020 by tomnjerry74
Happy2Play 9441 Posted August 20, 2020 Posted August 20, 2020 As with all css it only applies to LAN/WAN/DDNS browser connections but sure. I am not seeing a way to target this specific form and it would appear to affect all other forms, here is a way of hide the options. /*hide Theme options on User preferences*/ #selectTheme, #selectSettingsTheme {display: none;} Other way would be manually editing the /setting/display.html but would need to be done with every update. removing <div class="selectContainer"> <select id="selectTheme" is="emby-select" label="${LabelTheme}"></select> <div class="fieldDescription featurePremiereInfo"></div> </div> <div class="selectContainer"> <select id="selectSettingsTheme" is="emby-select" label="${LabelSettingsTheme}"></select> <div class="fieldDescription featurePremiereInfo"></div> </div>
tomnjerry74 97 Posted August 20, 2020 Author Posted August 20, 2020 49 minutes ago, Happy2Play said: As with all css it only applies to LAN/WAN/DDNS browser connections but sure. I am not seeing a way to target this specific form and it would appear to affect all other forms, here is a way of hide the options. /*hide Theme options on User preferences*/ #selectTheme, #selectSettingsTheme {display: none;} Other way would be manually editing the /setting/display.html but would need to be done with every update. removing <div class="selectContainer"> <select id="selectTheme" is="emby-select" label="${LabelTheme}"></select> <div class="fieldDescription featurePremiereInfo"></div> </div> <div class="selectContainer"> <select id="selectSettingsTheme" is="emby-select" label="${LabelSettingsTheme}"></select> <div class="fieldDescription featurePremiereInfo"></div> </div> Thanks for your help! For anyone wondering, it's best to add style="display:none;" to each of the selectContainer divs, as removing them outright causes it to be a little glitchy. 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now