Jump to content

CSS Help (finding color codes to change a few things)


Westiewill

Recommended Posts

Westiewill

Hello!  Ive been working on my Emby theme and am stuck on finding two things to modify the color codes for can anyone point me to the codes so I can search/replace it  

 

#1  LOGIN TEXT AREA (GREY)

I want the grey field where you type in changed to black.. where is that in the CSS

 

5cdbe3f76f908_css2.jpg

 

#2    WHITE TEXT FIELD BOXES CHANGED TO BLACK AND FONT COLOR WHITE IN ADMIN DASHBOARD 

 

5cdbe432c2347_css.jpg

 

hope someone can point me where to change this in the CSS..

 

thank you in adv

 

Westie

Link to comment
Share on other sites

Nickbert
This should do it:

 

.emby-input, .emby-textarea {

background: #yourcolor!important;

}

Link to comment
Share on other sites

Westiewill

 

This should do it:
 
.emby-input, .emby-textarea {
background: #yourcolor!important;
}

 

 

cant find anything in there ;/

Link to comment
Share on other sites

Nickbert

Oh, I thought you wanted to edit it via the custom CSS section...

If this is not the case, I cannot help you, sorry...

Edited by Nickbert
Link to comment
Share on other sites

Westiewill

Oh, I thought you wanted to edit it via the custom CSS section...

If this is not the case, I cannot help you, sorry...

yes thats what im trying to do, but I did a search for the code you posted and it does not show up in the custom CSS section.

Link to comment
Share on other sites

Nickbert

Ah, ok.
you have to add it by yourself into the section and modify the color to the value you prefer.

 

For green:

 

.emby-input, .emby-textarea {
background: #00ff00!important;
}
Edited by Nickbert
Link to comment
Share on other sites

Westiewill

 

Ah, ok.

you have to add it by yourself into the section and modify the color to the value you prefer.

 

For green:

 

.emby-input, .emby-textarea {
background: #00ff00!important;
}

 

 

ok, I get it... just not sure which sections are for the fields in the picture I posted at the beginning of the thread :)

Link to comment
Share on other sites

Nickbert

try this:

 

.emby-input, .emby-textarea {
background: #000000!important;
color: #ffffff!important;
}
 
5cdc430d81fa6_20190515_184804.jpg
Link to comment
Share on other sites

Westiewill

 

try this:

 

.emby-input, .emby-textarea {
background: #000000!important;
color: #ffffff!important;
}
 
5cdc430d81fa6_20190515_184804.jpg

 

 

 

 

Perfect, that worked!  Thank you!

Link to comment
Share on other sites

Westiewill

 

try this:

 

.emby-input, .emby-textarea {
background: #000000!important;
color: #ffffff!important;
}
 
5cdc430d81fa6_20190515_184804.jpg

 

5cdc4b2c55eb1_tankyou.jpg

 

Looks much better with black inside,  thankyou

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...