CBers 7114 Posted July 30, 2017 Posted July 30, 2017 I added the beta CSS to my Stable server and they were there, which is why I said it was the beta server.
Ben Z 86 Posted July 30, 2017 Author Posted July 30, 2017 Beta is all fixed now (until someone find another issue of course ) 1
Luke 40086 Posted July 30, 2017 Posted July 30, 2017 See here: https://emby.media/community/index.php?/topic/49217-just-a-little-fun/page-2&do=findComment&comment=471813 Those using this will probably want to set their theme setting to whatever is closes to what you're getting from @@Ben Z.
PenkethBoy 2066 Posted July 30, 2017 Posted July 30, 2017 does not appear to have any effect on the css - which is good - with the default choices of dark theme and light dashboard
PenkethBoy 2066 Posted July 30, 2017 Posted July 30, 2017 Beta is all fixed now (until someone find another issue of course ) Thanks beta css working again
Ben Z 86 Posted July 31, 2017 Author Posted July 31, 2017 (edited) I just updated beta again. Since Luke include a dark theme now, my own dark colors are in a different css file now. Use my themes as usual but you now have to import my other dark colors css file if you want to use it. See here. Basically, 2 imports, one for accent color and one for dark theme : @import url('https://rawgit.com/BenZuser/Emby-Web-Dark-Themes-CSS/beta/DARK-COLORS.css'); You can also use the new function added in Emby with default dark colors. See Luke's post here. Edited July 31, 2017 by Ben Z 1
CBers 7114 Posted July 31, 2017 Posted July 31, 2017 I just updated beta again. Since Luke include a dark theme now, my own dark colors are in a different css file now. Use my themes as usual but you now have to import my other dark colors css file if you want to use it. See here. Basically, 2 imports, one for accent color and one for dark theme : @import url('https://rawgit.com/BenZuser/Emby-Web-Dark-Themes-CSS/beta/DARK-COLORS.css'); You can also use the new function added in Emby with default dark colors. See Luke's post here. Thanks @@Ben Z. All very confusing now
Guest Posted July 31, 2017 Posted July 31, 2017 Hi, I use the blue color, pasting the theme link and below it, my CSS changes and everything works fine. I'd like to know if it's possible to paste the code (not the link anymore) and continue adding my CSS changes to the end of your code. My question is about the updates, that is, with each new version of Emby Server, would it be necessary to get the complete code again to override what is in use? Thanks for answering.
chef 3808 Posted July 31, 2017 Posted July 31, 2017 Hi, I use the blue color, pasting the theme link and below it, my CSS changes and everything works fine. I'd like to know if it's possible to paste the code (not the link anymore) and continue adding my CSS changes to the end of your code. My question is about the updates, that is, with each new version of Emby Server, would it be necessary to get the complete code again to override what is in use? Thanks for answering. That's the beauty of the link, if Ben Z updates the GitHub repo you theme will update. His code is open source on git though, but you can always add extra CSS to the branding in emby Or n override Anything with !important, as long as it is posted after the theme. Put the link at the top of your banding and then add whatever you want after
Guest Posted July 31, 2017 Posted July 31, 2017 I understood and this is how I do, however what I would like to do is to change the url of an image that is in the theme code.
Ben Z 86 Posted July 31, 2017 Author Posted July 31, 2017 (edited) I understood and this is how I do, however what I would like to do is to change the url of an image that is in the theme code.Then yes, just copy/paste the code and add whatever you want after like @@chef said. Nothing really changed, I've just split the theme into 2 css files, accent color and dark color. People can now choose to have a light version of the theme now if that's what they want. Edit: Beta only at the moment. Edited July 31, 2017 by Ben Z
Guest Posted July 31, 2017 Posted July 31, 2017 Again, I understand, my question is, by copying / pasting, will I have automatic updates of the theme?
Ben Z 86 Posted July 31, 2017 Author Posted July 31, 2017 Again, I understand, my question is, by copying / pasting, will I have automatic updates of the theme? No. You can only get automatic updates by using @import(url)
Ben Z 86 Posted July 31, 2017 Author Posted July 31, 2017 @@CarlosLima I don't have time to test it right now but you should be able to use my theme with @import at the beginning and just add those same css lines with different urls. /* Logos Modifications */ /* Login Page */ .imgLogoIcon { content: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/BLUE/logo.png) !important; } /* Main Drawer Mobile */ .adminDrawerLogo img { content: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/BLUE/logo.png) !important; } /* Home Page */ .pageTitleWithLogo { background-image: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/BLUE/logo.png) !important; } Make sure to keep all those !important, it'll override my code. You should have your personal logos and automatic updates.
Guest Posted July 31, 2017 Posted July 31, 2017 (edited) @@CarlosLima I don't have time to test it right now but you should be able to use my theme with @import at the beginning and just add those same css lines with different urls. /* Logos Modifications */ /* Login Page */ .imgLogoIcon { content: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/BLUE/logo.png) !important; } /* Main Drawer Mobile */ .adminDrawerLogo img { content: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/BLUE/logo.png) !important; } /* Home Page */ .pageTitleWithLogo { background-image: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/BLUE/logo.png) !important; } Make sure to keep all those !important, it'll override my code. You should have your personal logos and automatic updates. Now, everything's perfect here. I used the remote link (to have the automatic updates) and pasted the codes below it and worked. A detail. It is possible to increase the size of the logo image in "Home Page", because mine was greatly reduced, almost illegible. Edited July 31, 2017 by CarlosLima
Ben Z 86 Posted July 31, 2017 Author Posted July 31, 2017 Now, everything's perfect here. I used the remote link (to have the automatic updates) and pasted the codes below it and worked. A detail. It is possible to increase the size of the logo image in "Home Page", because mine was greatly reduced, almost illegible. .pageTitleWithLogo { width: 10em !important; } Change the number to whatever you want.
Guest Posted July 31, 2017 Posted July 31, 2017 .pageTitleWithLogo { width: 10em !important; } Change the number to whatever you want. It's really "em" ?, because nothing has changed here.
Ben Z 86 Posted July 31, 2017 Author Posted July 31, 2017 It's really "em" ?, because nothing has changed here. It's preferable to have a logo with similar proportions like this because you have a limited area. You can use pixels also like 10px .
drikosv8 25 Posted August 11, 2017 Posted August 11, 2017 Can someone help me? I need to put a link in the image of this code. #loginPage:after { position: absolute; margin-left: auto; margin-right: auto; left: 0; right: 0; top: 570px; content: " "; background: url(https://2.bp.blogspot.com/-F3ChOFhU35Y/WG0g872ZodI/AAAAAAAAIQA/dU1Pk4Dg57MTNfQwt-xFEqYFfmuffNrJACPcB/s1600/cinema%2Bem%2Bcasa%2Bpng.png); background-size: 100% 100%; width: 280px; height: 180px; } I do not have much experience with css. Thank you Alguem pode me ajudar? Preciso colocar um link na imagem desse código. Não tenho muita experiencia com css. Obrigado
drikosv8 25 Posted August 11, 2017 Posted August 11, 2017 Can someone help me? I need to put a link in the image of this code. #loginPage:after { position: absolute; margin-left: auto; margin-right: auto; left: 0; right: 0; top: 570px; content: " "; background: url(https://2.bp.blogspot.com/-F3ChOFhU35Y/WG0g872ZodI/AAAAAAAAIQA/dU1Pk4Dg57MTNfQwt-xFEqYFfmuffNrJACPcB/s1600/cinema%2Bem%2Bcasa%2Bpng.png); background-size: 100% 100%; width: 280px; height: 180px; } I do not have much experience with css. Thank you Alguem pode me ajudar? Preciso colocar um link na imagem desse código. Não tenho muita experiencia com css. Obrigado Please :-)
Ben Z 86 Posted August 12, 2017 Author Posted August 12, 2017 (edited) @@Ben Z Can you help me? Thanks I'm not really sure to understand what you want. What do you want to do with this image ? Edit: You want a link when you click on it? Edited August 12, 2017 by Ben Z
drikosv8 25 Posted August 12, 2017 Posted August 12, 2017 (edited) I'm not really sure to understand what you want. What do you want to do with this image ? Edit: You want a link when you click on it? Correct friend, I would like this image that appears in the login screen, had a link that when clicking on it opened another page. Thanks for helping Isso amigo, Gostaria que essa imagem que aparece na tela de login, tivesse um link que ao clicar nela abrisse uma outra pagina. Obrigado por ajudar Edited August 12, 2017 by drikosv8
Ben Z 86 Posted August 13, 2017 Author Posted August 13, 2017 Correct friend, I would like this image that appears in the login screen, had a link that when clicking on it opened another page. Thanks for helping Isso amigo, Gostaria que essa imagem que aparece na tela de login, tivesse um link que ao clicar nela abrisse uma outra pagina. Obrigado por ajudar Sorry, you can't do that with CSS. CSS is all about colours, layout, esthetics, etc.
drikosv8 25 Posted August 13, 2017 Posted August 13, 2017 Sorry, you can't do that with CSS. CSS is all about colours, layout, esthetics, etc. I thank you for responding anyway. Many thanks, my friend.
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