-
AuthorPosts
-
February 15, 2018 at 11:39 pm #913021
Hello,
I would like to have the dropdown submenu links background transparent to match the header and main menu transparency setting. I didn’t see a transparency setting for the dropdown menu in advance styling or in header settings>transparency options. Is this feature possible?Thank you!
February 16, 2018 at 4:56 am #913085Hey mattb1169,
Try this code in the General Styling > Quick CSS field:.av_header_transparency .av-main-nav > li > ul * { background: transparent!important; border: none; } .av_header_transparency .av-main-nav > li > ul { background:transparent!important; border: none; border-bottom:transparent; }
Best regards,
MikeFebruary 16, 2018 at 5:56 pm #913317Thanks Mike!
February 16, 2018 at 6:20 pm #913320I have another question about adding a social media icon. I followed the posted support thread and added the code to the functions.php file, I’m seeing a custom icon but I’m wanting the Yelp! icon, there’s a different one showing up in the social profiles selector. Can you please help with this?
February 17, 2018 at 7:33 am #913544Hi mattb1169,
You’ve put ‘Icon Label’ instead of the Yelp name, I’ve adjusted the code. It was working before, was just called differently.
Please note that this code will disappear on the next Enfold update and you should use a child theme for such modifications.
If you need further assistance please let us know.
Best regards,
VictoriaFebruary 17, 2018 at 8:24 pm #913711Thank you Victoria. When I select Yelp in the social profiles dropdown a different icon appears (money). Please let me know what I should change to bring up the Yelp icon. Thank you!
February 18, 2018 at 8:25 am #913817Hi mattb1169,
Did you go through all the steps from here?
https://kriesi.at/support/topic/adding-yelp-icon/#post-447087Best regards,
VictoriaFebruary 18, 2018 at 10:56 pm #914054Thanks Victoria,
I have added the fontello icon for Yelp and it is showing up. I’m trying to add it to the social media profiles, which I’ve done by adding the code provided through one of the forum threads. See the screen shots. I can’t get the icon to show although I can click the spot where it should be and it takes me to the right Yelp page..February 19, 2018 at 1:05 pm #914226Hi,
I corrected your function.php code to this:// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['yelpicon'] = array( 'font' =>'yelpicon', 'icon' => 'uf1e9'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Yelp'] = 'yelpicon'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Please notice the font name & the icon code.
I also corrected your css for the icon background-color:#top #wrap_all .av-social-link-yelpicon:hover a{ color:#fff; background-color:#c41200; }
I changed yelp to yelpicon
Best regards,
MikeFebruary 19, 2018 at 5:51 pm #914417Thank you Mike!
February 19, 2018 at 9:04 pm #914536Hi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
Basilis -
AuthorPosts
- The topic ‘Manin Menu, submenu transparency?’ is closed to new replies.