Forum Replies Created

Viewing 7 posts - 33,001 through 33,007 (of 33,007 total)
  • Author
    Posts
  • in reply to: Keeping menu when scrolling #748909

    Hey Dave,
    To have a sticky menu check the box at Enfold Theme Options > Header > Header behavior > Sticky Header
    To have the logo hidden in the sticky menu upload your logo at Enfold Theme Options > Header > Transparency Options
    Sorry, padding the top of the menu does not give the effect you are looking for without making the whole menu transparent, which would make the menu hard to see.

    Best regards,
    Mike

    Hey jancecile,
    You can increase it’s size by using this code in the General Styling > Quick CSS field:

    #top label.checkbox {
        font-size: 1.2em;

    Please note that it’s size now is 0.92em, so try 1.2, 1.5, etc to you see the size you like. Also note it’s size & placment is based on Woocommerce & not Enfold.
    But I hope I was helpful :)

    Best regards,
    Mike

    in reply to: Footer issues #748902

    Hey ianazi,
    You can place your socket statement in Enfold Theme Options > Footer > Copyright.
    You can also use the code below for the heart, and I found that searching Google for “translation to Arabic” gave a Google translation box to copy and paste from.

    ❤

    Best regards,
    Mike

    • This reply was modified 7 years, 7 months ago by Mike.
    in reply to: Sticky Header: Hide the Logo when scrolling down #748901

    Hey mikschne,
    To hide the logo when scrolling down, ensure your logo is in Enfold Theme Options > Header > Transparency Logo
    After that, use this code in the General Styling > Quick CSS field:

    .header-scrolled .logo img { display: none; }

    Best regards,
    Mike

    in reply to: Color of ONE Menuelement in the main Navigation #748886

    Hey Oversberg,
    You can change the blue menu button to green by adding this code in your Enfold Theme Options > General Styling > Quick CSS field:

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
        background: #83A846;
        border: none;
    }

    You can add a icon shortcode, or an image HTML code, beside the text on the Navigation Label. For example:

    <span class="av-icon-char" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>

    Best regards,
    Mike

    in reply to: Search Form on mobile devices #748879

    Hey Alexander,
    If you want a search bar inside the mobile menu, add this in the functions.php file:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    After that, use this code in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    	#top #searchform>div {
    		display: block !important;
    		opacity: 1 !important;	
    	}
    }

    Best regards,
    Mike

    in reply to: Problem with wenu on smartphones #748859

    Hey TimoUrban,

    Please try this solulion, go to your custom menu item “Portfolio” and put a “#” in the URL box. This will allow the menu to open and show sub-menu items on user touch (click).

    Best regards,
    Mike

Viewing 7 posts - 33,001 through 33,007 (of 33,007 total)