Log in

View Full Version : Resolved Unable to find colour code



theremotedr
02-16-2016, 07:30 PM
Here is my web site http://www.theremotedoctor.co.uk
Today I have been through my basic-style css file & added comments next to each colour code.
I am then able to find what I need to much quicker.
There is 1 that I was unable to find though.

On the iOS device after selecting Menu a drop down list is shown.
Now the fields in question are Contact Me, Accessories, Fobs & Cases etc etc.
These are just headers but change colour if clicked etc.
Currently they are #66C2F1 then changes to #0099FF upon click.

As I was unable to find this code I decided to change one at a time the #0099FF codes to lime green #00FF00
Thinking I would then be able to spot which code when changed had an affect.
Ha Ha this never happened hence now asking for help here.

coothead
02-17-2016, 04:07 PM
Hi there theremotedr,



Unable to find colour code

Well, it does take a little eking out. :D

Try this...


@media screen and (max-width:920px) {
.srt-menu li:nth-child(2) a,.srt-menu li:nth-child(3) a,
.srt-menu li:nth-child(4) a,.srt-menu li:nth-child(5) a,
.srt-menu li:nth-child(6) a,.srt-menu li:nth-child(7) a,
.srt-menu li:nth-child(8) a {
background-color:#333;
color:#fff;
cursor:default;
}
.srt-menu li ul a {
background-color:#fff!important;
color:#000!important;
cursor:pointer!important;
}
.srt-menu li ul a:hover {
background-color:#09f!important;
}
}



coothead

theremotedr
02-17-2016, 05:33 PM
Hi,
Ive added that code to my css file at line 566 but i see no change.
I changed all the # codes in your code to lime green and dont see any reflection on the ios
Was i also supposed to alter something else ?

coothead
02-17-2016, 06:26 PM
Hi there theremotedr,


obviously the code that I supplied works, which means that
your implementation of it must be rather faulty. :eek:

Have you been knocking back the scrumpy? :D

Anyway, I have correctly installed it in your CSS file for you. ;)

You can find this file within the attachment. :)

theremotedr
02-17-2016, 07:02 PM
Obviously i am wrong no problem there.
Yep funny enough your suppliedd css file works spot on.
I was going to now tackle why my drop down text is not 100% centered but its been a long day so i am going to give it a look tomorrow.

Cheers for the continued welcomed help.

coothead
02-17-2016, 07:05 PM
No problem, you're very welcome. ;)


coothead