-
AuthorPosts
-
February 27, 2024 at 1:02 pm #1435588
Hi there 2 things I’d love your help with:
1. How do I remove the “Enfold WordPress Theme by Kriesi” in the footer please, it is not editable in the footer section.
2. How do I make the burger menu icon a different colour when I am at the top of the page and then when scrolling a different colour? Currently I have just 1 colour selection.
http://www.movewithmaria.co.uk
thank youFebruary 27, 2024 at 5:16 pm #1435612Hey divinecurio,
1. Please add this to the copyright field:
[nolink]
2. Please try the following in Quick CSS under Enfold->General Styling:
.av_header_transparency .av-hamburger-inner, .av_header_transparency .av-hamburger-inner::before, .av_header_transparency .av-hamburger-inner::after { background-color: white; }
Best regards,
RikardFebruary 28, 2024 at 10:57 am #1435713THank you Rikard, first part worked, the 2nd one didn’t work :(
February 28, 2024 at 12:08 pm #1435732Hi,
Please try this CSS instead:
.av_header_transparency .av-hamburger-inner, .av_header_transparency .av-hamburger-inner::before, .av_header_transparency .av-hamburger-inner::after { background-color: white !important; }
Best regards,
RikardFebruary 28, 2024 at 6:04 pm #1435781Rikard – thank you this worked!
Can you share the code I would require to have the social icons that are in the header on transparent to be a specific colour (#009989) and when it’s in the normal header scrolled down, it can be white?February 29, 2024 at 9:35 am #1435837Hi,
Thank you for the update.
You can add this css code to adjust the color of the social icons on transparent headers.
#top .av_header_glassy.av_header_transparency .social_bookmarks li, #top .av_header_glassy.av_header_transparency .social_bookmarks li a { border-color: rgba(255,255,255,0.25); color: #009989; }
The icons should revert back to white on scroll.
Best regards,
IsmaelMay 22, 2024 at 11:47 am #1445144Hi there, this is no longer working and I wonder if I am missing something as my client has asked for a lot of extra code to do with the burger menu.
In short – she wants the burger menu to be white on transparent background before scroll, then the teal colour when scrolling, The menu needs to have a teal background with white icons and writing when open and the icon needs to be white too when the menu (burger) is opened.Does this look right to you?
/* CSS – Testimonial BG */
.main_color .avia-testimonial-arrow-wrap .avia-arrow, .main_color .avia-slider-testimonials .avia-testimonial-content {
background: #ffffff;
}
/* Color section container width */
#section-container-width .container {
width: 100% !important;
min-width: 100%;
padding: 0;
margin: 0;
}
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all #header .main_menu {
position: fixed;
padding-right: 30px;
}
}
.av_header_transparency .logo {
display: none;
}
.av_header_transparency .av-hamburger-inner, .av_header_transparency .av-hamburger-inner::before, .av_header_transparency .av-hamburger-inner::after {
background-color: white !important;
}
#top .av_header_glassy.av_header_transparency .social_bookmarks li, #top .av_header_glassy.av_header_transparency .social_bookmarks li a {
border-color: rgba(255,255,255,0.25);
color: #009989;
}#socket .social_bookmarks {
display : none ;
}#top #av-burger-menu-ul {
padding: 120px 0px 0px !important
}#av-burger-menu-ul .menu-item-social {
display: table;
width: 100%;
}#top #av-burger-menu-ul .menu-item-social .avia-menu-text {
display: block;
width: 100% !important;
padding: 15px 50px 5px;
text-align: left !important;
font-style: italic;
}
@media only screen and (max-width: 767px) {
.responsive .logo { display: none !important; }#advanced_menu_toggle, #advanced_menu_hide {
margin-top: 10px;
}#header_main {
min-height: 82px;
}
}
@media only screen and (max-width: 767px) {
#top #wrap_all .av_header_transparency {
background: transparent;
position: absolute!important;
}#top .av-burger-overlay li li .avia-bullet,
#top .av-hamburger-inner,
#top .av-hamburger-inner::before,
#top .av-hamburger-inner::after {
background-color: #009989 !important;
}
#top .av-burger-overlay li li .avia-bullet,
#top .av-hamburger.is-active .av-hamburger-inner,
#top .av-hamburger.is-active .av-hamburger-inner::before,
#top .av-hamburger.is-active .av-hamburger-inner::after {
background-color: #fff !important;
}#top .av_header_glassy.av_header_transparency .social_bookmarks li, #top .av_header_glassy.av_header_transparency .social_bookmarks li a {
border-color: rgba(255,255,255,0.25);
color: #009989;
}May 22, 2024 at 10:00 pm #1445226Hi,
It looks like the last media query is not closed, so everything you place after that will be included in the media query. You can check your code using a service like CSS lint.
Best regards,
RikardMay 28, 2024 at 10:46 am #1446818I still don’t understand the css lint – it just tells me a load of stuff and I can’t figure out where the closing or opening is.
May 28, 2024 at 10:56 am #1446820Fixed it – thank yuou
May 28, 2024 at 11:19 am #1446828 -
AuthorPosts
- The topic ‘Footer removal and burger menu’ is closed to new replies.