-
AuthorPosts
-
March 29, 2019 at 1:40 pm #1084573
Hello,
Can you tell me how I can change the colour of this to white so that it doesn’t get lost within the black background of the mobile menu.website is http://www.textremeflytying.co.uk
March 29, 2019 at 4:35 pm #1084617try this in quick css:
.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after { background-color: #fff; }
and if you like to see the “bullets” a bit more intense play with the opacity:
.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet { opacity: 1; }
March 29, 2019 at 5:12 pm #1084650thanks but that hasn’t changed anything at all.
The cross icon to go back on mobile menu is still black and is hidden by the background. I need it to be white.
See image
https://bit.ly/2WwcYHu
The image shows it as back against the green. I need it to be white so that it can be seen on green and back backgroundmany thanks
March 30, 2019 at 7:40 am #1084824what do you have against shortening hexcode according to the nomenclature?
i use nearly almost for code the code tag here on board – that copy&paste will be easy.
#fff is similar to #ffffff (by the way 6digits) – on your code there are 5 !
#3a7 ist similar to #33aa77 etc.
by the way : all three digit hex-codes are websafe colors.very important: and on your quick css you do not close the media query rule above:
@media only screen and (max-width:767px) { #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a { font-size: 20px; color: white !important; } #menu-item-search a:before { color:white !important; } }
that last curly bracket is missing – and makes all rules later not working ( that is the reason for not having the wider content of 1310px but to have 1010px)
April 1, 2019 at 10:52 am #1085421working now. Thanks and you can mark this as resolved
April 2, 2019 at 12:24 am #1085757 -
AuthorPosts
- You must be logged in to reply to this topic.