Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #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!

    #913085

    Hey 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,
    Mike

    #913317

    Thanks Mike!

    #913320

    I 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?

    #913544

    Hi 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,
    Victoria

    #913711

    Thank 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!

    #913817

    Hi mattb1169,

    Did you go through all the steps from here?
    https://kriesi.at/support/topic/adding-yelp-icon/#post-447087

    Here is the yelp icon
    Image 2018-02-18 at 14.24.56.png

    Best regards,
    Victoria

    #914054

    Thanks 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..

    #914226

    Hi,
    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,
    Mike

    #914417

    Thank you Mike!

    #914536

    Hi,

    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

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Manin Menu, submenu transparency?’ is closed to new replies.