Viewing 30 results - 571 through 600 (of 986 total)
  • Author
    Search Results
  • #607099

    Topic: Social Icons in Widget

    in forum Enfold
    justinmichau
    Participant

    Hello. Looking to place my social icons in a sidebar widget. I’ve searched and found this thread (https://kriesi.at/support/topic/enfold-social-media-icons-in-widget/) which is how i got the ball rolling. I’ve tried multiple things but can still only show the first icon. Any help is appreciated. Site is: http://www.inglenookblog.com

    #606391
    jesseaborden
    Participant

    Hi All,

    I’d like to move my social icons from the socket to below the sign up form in the 3rd widget column. Could you give me hand?

    Thanks for all your help!

    – Jesse

    Hello!

    Thank you for your quick response. I add

    Here is my functions.php in enfold-child, but nothing has changed in Featured Image section, still missing the checkbox. Maybe I did something wrong?

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    add_filter( 'admin_post_thumbnail_html', 'mmx_cpt_featured_image_meta');
    function mmx_cpt_featured_image_meta( $content ) {
    	global $post, $post_type;
    	if( $post_type == "Projects" ) {
    		$text = __( "Don't display image on single post", 'avia_framework' );
    		$id = '_avia_hide_featured_image';
    		$value = esc_attr( get_post_meta( $post->ID, $id, true ) );
    		$selected = !empty($value) ? "checked='checked'" : "";
    		$label = '</div><div class="av-meta-extra-inside"><label for="' . $id . '" class="selectit"><input '.$selected.' name="' . $id . '" type="checkbox" id="' . $id . '" value="1" > ' . $text .'</label>';
    		return $content .= $label;
    	}
    	return $content;
    }

    And here is the functions.php from enfold-folder. I already did some configuration here and they appear in wp-admin. Should I add your code here or what should I do?

    <?php
    function howdy_message($translated_text, $text, $domain) {
        $new_message = str_replace('Howdy', 'Welcome', $text);
        return $new_message;
    }
    
    add_filter('gettext', 'howdy_message', 10, 3);
    
    add_action('init', 'my_custom_init');
    	function my_custom_init() {
    	add_post_type_support( 'news', 'publicize' );
    }
    
    global $avia_config;
    
    /*
     * if you run a child theme and dont want to load the default functions.php file
     * set the global var below in you childthemes function.php to true:
     *
     * example: global $avia_config; $avia_config['use_child_theme_functions_only'] = true;
     * The default functions.php file will then no longer be loaded. You need to make sure then
     * to include framework and functions that you want to use by yourself. 
     *
     * This is only recommended for advanced users
     */
    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    
    /*
     * create a global var which stores the ids of all posts which are displayed on the current page. It will help us to filter duplicate posts
     */
    $avia_config['posts_on_current_page'] = array();
    
    /*
     * wpml multi site config file
     * needs to be loaded before the framework
     */
    
    require_once( 'config-wpml/config.php' );
    
    /*
     * These are the available color sets in your backend.
     * If more sets are added users will be able to create additional color schemes for certain areas
     *
     * The array key has to be the class name, the value is only used as tab heading on the styling page
     */
    
    $avia_config['color_sets'] = array(
        'header_color'      => 'Logo Area',
        'main_color'        => 'Main Content',
        'alternate_color'   => 'Alternate Content',
        'footer_color'      => 'Footer',
        'socket_color'      => 'Socket'
     );
     
     
    
    /*
     * add support for responsive mega menus
     */
     
    add_theme_support('avia_mega_menu');
    
    /*
     * deactivates the default mega menu and allows us to pass individual menu walkers when calling a menu
     */
     
    add_filter('avia_mega_menu_walker', '__return_false');
    
    /*
     * adds support for the new avia sidebar manager
     */
     
    add_theme_support('avia_sidebar_manager');
    
    /*
     * Filters for post formats etc
     */
    //add_theme_support('avia_queryfilter');
    
    /*
     * Register theme text domain
     */
    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	
    	function avia_lang_setup()
    	{
    		$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    		load_theme_textdomain('avia_framework', $lang);
    	}
    	
    	avia_lang_setup();
    }
    
    ##################################################################
    # AVIA FRAMEWORK by Kriesi
    
    # this include calls a file that automatically includes all
    # the files within the folder framework and therefore makes
    # all functions and classes available for later use
    
    require_once( 'framework/avia_framework.php' );
    
    ##################################################################
    
    /*
     * Register additional image thumbnail sizes
     * Those thumbnails are generated on image upload!
     *
     * If the size of an array was changed after an image was uploaded you either need to re-upload the image
     * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
     */
    
    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    
    $avia_config['selectableImgSize'] = array(
    	'square' 				=> __('Square','avia_framework'),
    	'featured'  			=> __('Featured Thin','avia_framework'),
    	'featured_large'  		=> __('Featured Large','avia_framework'),
    	'portfolio' 			=> __('Portfolio','avia_framework'),
    	'gallery' 				=> __('Gallery','avia_framework'),
    	'entry_with_sidebar' 	=> __('Entry with Sidebar','avia_framework'),
    	'entry_without_sidebar'	=> __('Entry without Sidebar','avia_framework'),
    	'extra_large' 			=> __('Fullscreen Sections/Sliders','avia_framework'),
    	
    );
    
    avia_backend_add_thumbnail_size($avia_config);
    
    if ( ! isset( $content_width ) ) $content_width = $avia_config['imgSize']['featured']['width'];
    
    /*
     * register the layout classes
     *
     */
    
    $avia_config['layout']['fullsize'] 		= array('content' => 'av-content-full alpha', 'sidebar' => 'hidden', 	  	  'meta' => '','entry' => '');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'av-content-small', 	  'sidebar' => 'alpha' ,'meta' => 'alpha', 'entry' => '');
    $avia_config['layout']['sidebar_right'] = array('content' => 'av-content-small alpha','sidebar' => 'alpha', 'meta' => 'alpha', 'entry' => 'alpha');
    
    /*
     * These are some of the font icons used in the theme, defined by the entypo icon font. the font files are included by the new aviaBuilder
     * common icons are stored here for easy retrieval
     */
     
     $avia_config['font_icons'] = apply_filters('avf_default_icons', array(
     
        //post formats +  types
        'standard' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue836'),
        'link'    		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue822'),
        'image'    		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue80f'),
        'audio'    		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue801'),
        'quote'   		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue833'),
        'gallery'   	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue80e'),
        'video'   		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue80d'),
        'portfolio'   	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue849'),
        'product'   	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue859'),
        				
        //social		
        'behance' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue915'),
    	'dribbble' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8fe'),
    	'facebook' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f3'),
    	'flickr' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8ed'),
    	'gplus' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f6'),
    	'linkedin' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8fc'),
    	'instagram' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue909'),
    	'pinterest' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f8'),
    	'skype' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue90d'),
    	'tumblr' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8fa'),
    	'twitter' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f1'),
    	'vimeo' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8ef'),
    	'rss' 			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue853'),  
    	'youtube'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue921'),  
    	'xing'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue923'),  
    	'soundcloud'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue913'),  
    	'five_100_px'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue91d'),  
    	'vk'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue926'),  
    	'reddit'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue927'),  
    	'digg'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue928'),  
    	'delicious'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue929'),  
    	'mail' 			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue805'),
    					
    	//woocomemrce    
    	'cart' 			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue859'),
    	'details'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue84b'),
    
    	//bbpress    
    	'supersticky'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue808'),
    	'sticky'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue809'),
    	'one_voice'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue83b'),
    	'multi_voice'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue83c'),
    	'closed'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue824'),
    	'sticky_closed' => array( 'font' =>'entypo-fontello', 'icon' => 'ue808\ue824'),
    	'supersticky_closed' => array( 'font' =>'entypo-fontello', 'icon' => 'ue809\ue824'),
    					
    	//navigation, slider & controls
    	'play' 			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue897'),
    	'pause'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue899'),
    	'next'    		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue879'),
        'prev'    		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue878'),
        'next_big'  	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue87d'),
        'prev_big'  	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue87c'),
    	'close'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue814'),
    	'reload'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue891'),
    	'mobile_menu'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),
    					
    	//image hover overlays		
        'ov_external'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue832'),
        'ov_image'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue869'),
        'ov_video'		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue897'),
        
    					
    	//misc			
        'search'  		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue803'),
        'info'    		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue81e'),
    	'clipboard' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8d1'),
    	'scrolltop' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue876'),
    	'scrolldown' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue877'),
    	'bitcoin' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue92a'),
    
    ));
    
    add_theme_support( 'automatic-feed-links' );
    
    ##################################################################
    # Frontend Stuff necessary for the theme:
    ##################################################################
    
    /*
     * Register frontend javascripts:
     */
    if(!function_exists('avia_register_frontend_scripts'))
    {
    	if(!is_admin()){
    		add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
    	}
    
    	function avia_register_frontend_scripts()
    	{
    		$template_url = get_template_directory_uri();
    		$child_theme_url = get_stylesheet_directory_uri();
    
    		//register js
    		wp_enqueue_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 2, false ); //needs to be loaded at the top to prevent bugs
    		wp_enqueue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 3, true );
    		wp_enqueue_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 3, true );
    		wp_enqueue_script( 'avia-popup',  $template_url.'/js/aviapopup/jquery.magnific-popup.min.js', array('jquery'), 2, true);
    
    		wp_enqueue_script( 'jquery' );
    		wp_enqueue_script( 'wp-mediaelement' );
    
    		if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
    
    		//register styles
    		wp_register_style( 'avia-style' ,  $child_theme_url."/style.css", array(), 		'2', 'all' ); //register default style.css file. only include in childthemes. has no purpose in main theme
    		wp_register_style( 'avia-custom',  $template_url."/css/custom.css", array(), 	'2', 'all' );
    																						 
    		wp_enqueue_style( 'avia-grid' ,   $template_url."/css/grid.css", array(), 		'2', 'all' );
    		wp_enqueue_style( 'avia-base' ,   $template_url."/css/base.css", array(), 		'2', 'all' );
    		wp_enqueue_style( 'avia-layout',  $template_url."/css/layout.css", array(), 	'2', 'all' );
    		wp_enqueue_style( 'avia-scs',     $template_url."/css/shortcodes.css", array(), '2', 'all' );
    		wp_enqueue_style( 'avia-popup-css', $template_url."/js/aviapopup/magnific-popup.css", array(), '1', 'screen' );
    		wp_enqueue_style( 'avia-media'  , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );
    		wp_enqueue_style( 'avia-print' ,  $template_url."/css/print.css", array(), '1', 'print' );
    		
    		
    		if ( is_rtl() ) {
    			wp_enqueue_style(  'avia-rtl',  $template_url."/css/rtl.css", array(), '1', 'all' );
    		}
    		
    
            global $avia;
    		$safe_name = avia_backend_safe_string($avia->base_data['prefix']);
    		$safe_name = apply_filters('avf_dynamic_stylesheet_filename', $safe_name);
    
            if( get_option('avia_stylesheet_exists'.$safe_name) == 'true' )
            {
                $avia_upload_dir = wp_upload_dir();
                if(is_ssl()) $avia_upload_dir['baseurl'] = str_replace("http://", "https://", $avia_upload_dir['baseurl']);
    
                $avia_dyn_stylesheet_url = $avia_upload_dir['baseurl'] . '/dynamic_avia/'.$safe_name.'.css';
    			$version_number = get_option('avia_stylesheet_dynamic_version'.$safe_name);
    			if(empty($version_number)) $version_number = '1';
                
                wp_enqueue_style( 'avia-dynamic', $avia_dyn_stylesheet_url, array(), $version_number, 'all' );
            }
    
    		wp_enqueue_style( 'avia-custom');
    
    		if($child_theme_url !=  $template_url)
    		{
    			wp_enqueue_style( 'avia-style');
    		}
    
    	}
    }
    
    if(!function_exists('avia_remove_default_video_styling'))
    {
    	if(!is_admin()){
    		add_action('wp_footer', 'avia_remove_default_video_styling', 1);
    	}
    
    	function avia_remove_default_video_styling()
    	{
    		//remove default style for videos
    		wp_dequeue_style( 'mediaelement' );
    		// wp_dequeue_script( 'wp-mediaelement' );
    		// wp_dequeue_style( 'wp-mediaelement' );
    	}
    }
    
    /*
     * Activate native wordpress navigation menu and register a menu location
     */
    if(!function_exists('avia_nav_menus'))
    {
    	function avia_nav_menus()
    	{
    		global $avia_config, $wp_customize;
    
    		add_theme_support('nav_menus');
    		
    		foreach($avia_config['nav_menus'] as $key => $value)
    		{
    			//wp-admin\customize.php does not support html code in the menu description - thus we need to strip it
    			$name = (!empty($value['plain']) && !empty($wp_customize)) ? $value['plain'] : $value['html'];
    			register_nav_menu($key, THEMENAME.' '.$name);
    		}
    	}
    
    	$avia_config['nav_menus'] = array(	'avia' => array('html' => __('Main Menu', 'avia_framework')),
    										'avia2' => array(
    													'html' => __('Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu <a target="_blank" href="'.admin_url('?page=avia#goto_header').'">here</a>)</small>', 'avia_framework'),
    													'plain'=> __('Secondary Menu - will be displayed if you selected a header layout that supports a submenu', 'avia_framework')),
    										'avia3' => array(
    													'html' => __('Footer Menu <br/><small>(no dropdowns)</small>', 'avia_framework'),
    													'plain'=> __('Footer Menu (no dropdowns)', 'avia_framework'))
    									);
    
    	avia_nav_menus(); //call the function immediatly to activate
    }
    
    /*
     *  load some frontend functions in folder include:
     */
    
    require_once( 'includes/admin/register-portfolio.php' );		// register custom post types for portfolio entries
    require_once( 'includes/admin/register-widget-area.php' );		// register sidebar widgets for the sidebar and footer
    require_once( 'includes/loop-comments.php' );					// necessary to display the comments properly
    require_once( 'includes/helper-template-logic.php' ); 			// holds the template logic so the theme knows which tempaltes to use
    require_once( 'includes/helper-social-media.php' ); 			// holds some helper functions necessary for twitter and facebook buttons
    require_once( 'includes/helper-post-format.php' ); 				// holds actions and filter necessary for post formats
    require_once( 'includes/helper-markup.php' ); 					// holds the markup logic (schema.org and html5)
    
    if(current_theme_supports('avia_conditionals_for_mega_menu'))
    {
    	require_once( 'includes/helper-conditional-megamenu.php' );  // holds the walker for the responsive mega menu
    }
    
    require_once( 'includes/helper-responsive-megamenu.php' ); 		// holds the walker for the responsive mega menu
    
    //adds the plugin initalization scripts that add styles and functions
    
    if(!current_theme_supports('deactivate_layerslider')) require_once( 'config-layerslider/config.php' );//layerslider plugin
    
    require_once( 'config-bbpress/config.php' );					//compatibility with  bbpress forum plugin
    require_once( 'config-templatebuilder/config.php' );			//templatebuilder plugin
    require_once( 'config-gravityforms/config.php' );				//compatibility with gravityforms plugin
    require_once( 'config-woocommerce/config.php' );				//compatibility with woocommerce plugin
    require_once( 'config-wordpress-seo/config.php' );				//compatibility with Yoast WordPress SEO plugin
    
    if(!current_theme_supports('deactivate_tribe_events_calendar'))
    {
    	require_once( 'config-events-calendar/config.php' );		//compatibility with the Events Calendar plugin
    }
    
    if(is_admin())
    {
    	require_once( 'includes/admin/helper-compat-update.php');	// include helper functions for new versions
    }
    
    /*
     *  dynamic styles for front and backend
     */
    if(!function_exists('avia_custom_styles'))
    {
    	function avia_custom_styles()
    	{
    		require_once( 'includes/admin/register-dynamic-styles.php' );	// register the styles for dynamic frontend styling
    		avia_prepare_dynamic_styles();
    	}
    
    	add_action('init', 'avia_custom_styles', 20);
    	add_action('admin_init', 'avia_custom_styles', 20);
    }
    
    /*
     *  activate framework widgets
     */
    if(!function_exists('avia_register_avia_widgets'))
    {
    	function avia_register_avia_widgets()
    	{
    		register_widget( 'avia_newsbox' );
    		register_widget( 'avia_portfoliobox' );
    		register_widget( 'avia_socialcount' );
    		register_widget( 'avia_combo_widget' );
    		register_widget( 'avia_partner_widget' );
    		register_widget( 'avia_google_maps' );
    		register_widget( 'avia_fb_likebox' );
    		register_widget( 'avia_instagram_widget' );
    		
    	}
    
    	avia_register_avia_widgets(); //call the function immediatly to activate
    }
    
    /*
     *  add post format options
     */
    add_theme_support( 'post-formats', array('link', 'quote', 'gallery','video','image','audio' ) );
    
    /*
     *  Remove the default shortcode function, we got new ones that are better ;)
     */
    add_theme_support( 'avia-disable-default-shortcodes', true);
    
    /*
     * compat mode for easier theme switching from one avia framework theme to another
     */
    add_theme_support( 'avia_post_meta_compat');
    
    /*
     * make sure that enfold widgets dont use the old slideshow parameter in widgets, but default post thumbnails
     */
    add_theme_support('force-post-thumbnails-in-widget');
    
    /*
     *  register custom functions that are not related to the framework but necessary for the theme to run
     */
    
    require_once( 'functions-enfold.php');
    
    /*
     * add option to edit elements via css class
     */
    // add_theme_support('avia_template_builder_custom_css');
    

    Best regards,
    Tom

    #603098

    Here is the full code in the footer.php file (not just the snippet above)

    <***?php

    do_action( ‘ava_before_footer’ );

    global $avia_config;
    $blank = isset($avia_config[‘template’]) ? $avia_config[‘template’] : “”;

    //reset wordpress query in case we modified it
    wp_reset_query();

    //get footer display settings
    $the_id = avia_get_the_id(); //use avia get the id instead of default get id. prevents notice on 404 pages
    $footer = get_post_meta($the_id, ‘footer’, true);
    $footer_widget_setting = !empty($footer) ? $footer : avia_get_option(‘display_widgets_socket’);

    //check if we should display a footer
    if(!$blank && $footer_widget_setting != ‘nofooterarea’ )
    {
    if( $footer_widget_setting != ‘nofooterwidgets’ )
    {
    //get columns
    $columns = avia_get_option(‘footer_columns’);
    ?>
    <div class=’container_wrap footer_color’ id=’footer’>

    <div class=’container’>

    <?php
    do_action(‘avia_before_footer_columns’);

    //create the footer columns by iterating

    switch($columns)
    {
    case 1: $class = ”; break;
    case 2: $class = ‘av_one_half’; break;
    case 3: $class = ‘av_one_third’; break;
    case 4: $class = ‘av_one_fourth’; break;
    case 5: $class = ‘av_one_fifth’; break;
    case 6: $class = ‘av_one_sixth’; break;
    }

    $firstCol = “first el_before_{$class}”;

    //display the footer widget that was defined at appearenace->widgets in the wordpress backend
    //if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
    for ($i = 1; $i <= $columns; $i++)
    {
    $class2 = “”; // initialized to avoid php notices
    if($i != 1) $class2 = ” el_after_{$class} el_before_{$class}”;
    echo “<div class=’flex_column {$class} {$class2} {$firstCol}’>”;
    if (function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Footer – column’.$i) ) : else : avia_dummy_widget($i); endif;
    echo “</div>”;
    $firstCol = “”;
    }

    do_action(‘avia_after_footer_columns’);

    ?>

    </div>

    <!– ####### END FOOTER CONTAINER ####### –>
    </div>

    <?php } //endif nofooterwidgets ?>

    <?php

    //copyright
    $copyright = do_shortcode( avia_get_option(‘copyright’, “© “.__(‘Copyright’,’avia_framework).” – “.get_bloginfo(‘name’).”“) );

    // you can filter and remove the backlink with an add_filter function
    // from your themes (or child themes) functions.php file if you dont want to edit this file
    // you can also just keep that link. I really do appreciate it ;)
    $kriesi_at_backlink = kriesi_backlink(get_option(THEMENAMECLEAN.”_initial_version”));

    //you can also remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area
    if($copyright && strpos($copyright, ‘[nolink]’) !== false)
    {
    $kriesi_at_backlink = “”;
    $copyright = str_replace(“[nolink]”,””,$copyright);
    }

    if( $footer_widget_setting != ‘nosocket’ )
    {

    ?>

    <footer class=’container_wrap socket_color’ id=’socket’ <?php avia_markup_helper(array(‘context’ => ‘footer’)); ?>>
    <div class=’container’>

    <span class=’copyright’><?php echo $copyright . $kriesi_at_backlink; ?></span>

    <?php
    if(avia_get_option(‘footer_social’, ‘disabled’) != “disabled”)
    {
    $social_args = array(‘outside’=>’ul’, ‘inside’=>’li’, ‘append’ => ”);
    echo avia_social_media_icons($social_args, false);
    }

    $avia_theme_location = ‘avia3’;
    $avia_menu_class = $avia_theme_location . ‘-menu’;

    $args = array(
    ‘theme_location’=>$avia_theme_location,
    ‘menu_id’ =>$avia_menu_class,
    ‘container_class’ =>$avia_menu_class,
    ‘fallback_cb’ => ”,
    ‘depth’=>1,
    ‘echo’ => false,
    ‘walker’ => new avia_responsive_mega_menu(array(‘megamenu’=>’disabled’))
    );

    $menu = wp_nav_menu($args);

    if($menu){
    echo “<nav class=’sub_menu_socket’ “.avia_markup_helper(array(‘context’ => ‘nav’, ‘echo’ => false)).”>”;
    echo $menu;
    echo “</nav>”;
    }
    ?>

    </div>

    <!– ####### END SOCKET CONTAINER ####### –>
    </footer>

    <?php
    } //end nosocket check

    } //end blank & nofooterarea check
    ?>
    <!– end main –>
    </div>

    <?php
    //display link to previeous and next portfolio entry
    echo avia_post_nav();

    echo “<!– end wrap_all –></div>”;

    if(isset($avia_config[‘fullscreen_image’]))
    { ?>
    <!–[if lte IE 8]>
    <style type=”text/css”>
    .bg_container {
    -ms-filter:”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config[‘fullscreen_image’]; ?>’, sizingMethod=’scale’)”;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config[‘fullscreen_image’]; ?>’, sizingMethod=’scale’);
    }
    </style>
    <![endif]–>
    <?php
    echo “<div class=’bg_container’ style=’background-image:url(“.$avia_config[‘fullscreen_image’].”);’></div>”;
    }
    ?>

    <?php

    /* Always have wp_footer() just before the closing </body>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to reference JavaScript files.
    */

    wp_footer();

    ?>
    ‘ id=’scroll-top-link’ <?php echo av_icon_string( ‘scrolltop’ ); ?>><span class=”avia_hidden_link_text”><?php _e(‘Scroll to top’,’avia_framework’); ?></span>

    <div id=”fb-root”></div>
    </body>
    </html***>

    navindesigns
    Participant

    Hi,

    In my footer area, in the middle I have 4 Font Awesome Social Icons and for some weird reason, after I added those icons the widget next to it (CONTACT US) the address is linking to instagram.com
    It is very weird but I cannot figure it out. Can you please take a look

    Site
    http://1c5.964.myftpupload.com

    #599177
    brogilberto
    Participant

    Hi guys,

    Sorry, I think you missed the quick question in the middle of my last topic: https://kriesi.at/support/topic/adding-social-icons-into-text-widget/

    “As well, it would be great to have those icon colors that you see on mouseover “on” all the time, instead of grey to start with.”

    Is this possible? Thanks so much!

    #599154
    brogilberto
    Participant

    Hi guys,

    I’ve seen numerous posts on this topic: https://kriesi.at/support/topic/place-social-media-icons-into-a-widget/ but can’t quite figure out the right coding for the website I’m building, as it’s a slight different combo of social icons we’re using. I’m going to post you the link to our dev site (and contact page where I’m putting icons) below in private, and am hoping you could send me the html code to work in a text box on our site. Please note, that I don’t want to include the email icon/link from the header in the displayed icons here.
    Thanks so much. LOVE YOUR THEME!

    D

    #597562

    Hey!

    We do not see the social Icons in the left side header menu

    To add social icons to header please make a widget area as described int he link below and you can add it from Appearance > widgets

    Regards,
    Vinay Kashyap

    #597223
    czig
    Participant

    Can somebody explain where to edit the options for the social icons at the top of this right sidebar please? I want to change the links from Kriesi’s to mine!

    RESOLVED: THESE ARE IN A WIDGET!

    • This topic was modified 9 years, 11 months ago by czig. Reason: Resolved
    daoist
    Participant

    This is what my CSS looks now: http://www.dersichtweise.at/blog/

    /* Stack footer */
    @media only screen and (max-width: 767px) {
    footer .copyright, footer .social_bookmarks, footer .sub_menu_socket {
    width: 100%!important;
    clear: both!important;
    display: block!important;
    float:none!important;
    }
    footer .social_bookmarks {
    padding-left:8px;
    }
    }

    /* header */
    .header_color .main_menu ul:first-child > li > a {font-weight: 300; font-size: 18px; font-family:’Helvetica Neue’}
    .header_color .main_menu ul:first-child > li > a:hover { color: #03558f; }
    .header_color .main_menu ul:first-child > li.current_page_item > a { color #d1606d; }

    /* Linie weg im menü*/
    .avia-menu {
    border-right: 0px !important;
    }

    /* title Farbe und größe*/
    .main-title a {
    color: #03558f !important;
    font-size: 24px !important;
    }

    /* title zentrieren */
    .title_container .main-title { text-align: center; }

    .alternate_color { border-color: #e1e1e1 !important; }

    /* footer font size */
    .iconbox_content_title {
    font-size: 15px!important;
    }

    #footer a {
    padding: 0;
    }
    #footer input {
    margin-bottom: 0;
    }

    /* logo große skalieren */
    .logo img {
    max-width: 100%;
    }

    #top .av-mailchimp-widget-style-boxed_form {
    border-style: solid;
    border-width: 1px;
    padding: 10px;
    }
    .widgettitle + .av-mailchimp-widget-style-boxed_form {
    margin-top: 10px;
    }

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}

    @media only screen and (max-width: 767px){
    .responsive #socket .sub_menu_socket {
    display: block !important;
    }}

    /* social icons im header */
    @media only screen and (max-width: 767px) {
    .responsive.html_header_top #header_main .social_bookmarks, .responsive.html_top_nav_header #top .social_bookmarks {
    margin-top: 0;
    display: block !important;
    }
    }

    /* logo abstand nach oben */
    .html_header_top.html_logo_center .logo {
    padding-top: 1px !important;
    }

    /*Farbrand rund um Widget box-Sidebar-blog */
    section#text-2 {
    border: 1px solid #ebeff5;
    padding: 10px;
    }

    /* social media icons größe */
    @media only screen and (max-width: 480px) {
    .responsive #header .social_bookmarks li { margin-right: 10px; }}

    /* Groesse linkliste footer abstand vertical */
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child>li>a {
    padding: 0 20px;
    }
    }

    #589590

    In reply to: Aligning elements

    Hi SpecThra!

    1. To position the logo and the social icons as you described goto
    Enfold > Header > Header Behavior > Let logo and menu position adapt to browser window

    2. An inline style=”min-width: 180px; width: 340px;” is applied to FB widget change the width=”340px” to 100%.

    3. check if the padding is applied to color section in the edit options.

    4. Check out the plugin list here https://kriesi.at/support/topic/recommended-plugins/
    Please share a mockup of what you need to align so we can understand you better and help you better.

    Cheers!
    Vinay Kashyap

    #589160

    Hi asinger777!

    The in built social icons link to your profile. If you like a change in the functionality and like the buttons to behave like a Like or Follow button please use a plugin like https://wordpress.org/plugins/simple-follow-me-social-buttons-widget/ and add the shortcode in the footer widget.

    Appearance > widgets > footer

    Regards,
    Vinay Kashyap

    #588373

    Topic: Aligning elements

    in forum Enfold
    SpecThra
    Participant

    Hi guys!

    I’m trying to align everything in the boxed layout and responsive setup.

    1) I’ve created a widget in the header area, with social icons. I would like it to be responsive, so it doesn’t overlap anything. I can’t get it to be a the very edge of the boxed layout, so it’s kind of misplaced in the middle. I also want a simple transparent hover effect. Is there a fix, or do you have any other suggestions?

    2) The Facebook feed is not responsive, how can I do this? Is there a better place for this, perhaps a sidebar? We don’t really want a sidebar though.

    3) The color section, and the single column, do not meet at the edges – it needs to align with the top left border of the HOME menu button.

    4) We will be a commercial site running ads. Our formats are in the Private Content. Everything needs to be aligned perfectly for a good look. We are using the plugin “Advanced Advertising System” – this doesn’t seem responsive? Any other suggestions?

    Thanks!

    Hi!

    No actually but JetPack displays share icons under posts and does as it should on footer widget as well :)
    I posted a custom CSS code above as a workaround. If you would like to keep your social share icons enabled, please use the code.

    Cheers!
    Yigit

    AirstreamCoach
    Participant

    Hi. Not sure how I turned this on but, how do i disable “share this” and the colored oval social sharing icons? They appear in the “Latest News” widget in my footer. see pic. thanks. http://imgur.com/nR2NjtL

    #585866

    Hi!

    Add this in the Quick CSS field in order to fix the border:

    #header .widget {
        border-top: 1px solid #e1e1e1;
    }

    If you want to move the widget on top of the social icon. Replace the action hook with this:

    add_action( 'ava_inside_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    Cheers!
    Ismael

    #584235
    VORMELEVENCC
    Participant

    Hello,

    Tought it would be better to start my own topic. Tried to hitch along with: https://kriesi.at/support/topic/cant-add-social-icons-to-widget-in-footer/
    But didn’t work

    The basis: I would like to add 4 round social media icons in the footer.
    1: Mail, 2: Twitter, 3: Facebook & 4: LinkedIn

    Placed in the footer widget (column 3 footer):

    <ul class=”noLightbox social_bookmarks icon_count_4″>
    <li class=”social_bookmarks_mail av-social-link-mail social_icon_1″>
    <span class=”avia_hidden_link_text”>mail</span>

    <li class=”social_bookmarks_twitter av-social-link-twitter social_icon_2″>
    <span class=”avia_hidden_link_text”>Twitter</span>

    <li class=”social_bookmarks_facebook av-social-link-facebook social_icon_3″>
    <span class=”avia_hidden_link_text”>Facebook</span>

    <li class=”social_bookmarks_linkedin av-social-link-linkedin social_icon_4″>
    <span class=”avia_hidden_link_text”>linkedin</span>

    Placed in style.css (Enfold child theme):

    #footer .social_bookmarks li {clear: none!important;}
    .social_bookmarks li {border-radius: 100px;}

    This output gives me 4 square icons:
    1) Facebook icon (with mail text on mouse over) – Should be mail icon
    2) Twitter icon (correct)
    3) Facebook icon (correct)
    4) Skype icon (with LinkedIn text on mouse over) – Should be LinkedIn icon
    (see http://nl.tinypic.com/r/2zs3dvq/9)

    Can you please help me?
    Searched the forums but can’t find any real reliable documentation. Is there any?
    Placed the login info in private section.

    With kind regards,
    Ivo Peters

    #582696
    csmwebdesign
    Participant

    Hi, within private content I have listed code that I have in a text footer widget. This used to display the social media icons, however since amending the footer header colour these have been removed? The code still exists, and I am unable to see why this would be. I have reverted the default colour back, but the social icons are still missing. I am using an enfold child theme, the parent is Enfold 3.4.7. Many thanks.

    • This topic was modified 10 years ago by Yigit. Reason: added code tags
    #582480

    Found it, for anyone else having issues, slap this in the Quick CSS:

    #footer .social_bookmarks li {
    clear: none !important;
    border: 0 !important;
    }

    And this in the widget text editor:

    <ul class=”noLightbox social_bookmarks icon_count_6″><li class=”social_bookmarks_facebook av-social-link-facebook social_icon_1″><span class=”avia_hidden_link_text”>Facebook</span><li class=”social_bookmarks_twitter av-social-link-twitter social_icon_2″><span class=”avia_hidden_link_text”>Twitter</span><li class=”social_bookmarks_skype av-social-link-skype social_icon_3″><span class=”avia_hidden_link_text”>Skype</span><li class=”social_bookmarks_pinterest av-social-link-pinterest social_icon_4″><span class=”avia_hidden_link_text”>Pinterest</span><li class=”social_bookmarks_gplus av-social-link-gplus social_icon_5″><span class=”avia_hidden_link_text”>Gplus</span><li class=”social_bookmarks_youtube av-social-link-youtube social_icon_6″><span class=”avia_hidden_link_text”>Youtube</span>

    #581263
    raisonbrands
    Participant

    Howdy,

    I’m trying to add social icons to a particular footer widget (not the socket) but am unable, and although I saw reference to code in other threads, I was unable to find the actual code anywhere on the support forum. Please help.

    #578627
    corneliaboehm
    Participant

    hi yigit.

    i have added this code to the footer widget: http://imgur.com/zgDBLMD

    Bit there are no facebook icons in the widget. can you please take a look :)

    http://www.lovestorm.eu/

    It should look like this: http://imgur.com/F1do1hA

    #578496
    kylerollins
    Participant

    Hi there,

    I added this code into Text widget in Appearance > Widgets – http://pastebin.com/75KkpMZ5. But only the first icon is showed. It appears it that the rest off the icons are align vertically, but they are hidden.
    Can you help fix it!

    Thanks!
    Cheers!
    Kyle

    #577114
    stevegoh422
    Participant

    Hi Guys,

    How can I add social media icons to footer widget in a vertical manner? I have found thread that teaches to do it in a horizontal manner ( in a row). I want to have Facebook, Instagram and Youtube icons on the right side of the footer widget.
    It will be good too if there are some spaces between the icons.

    Attached my site details below.

    Hi Yigit,

    Thanks for the reply and the changes you made.
    However, the hover effect is not centered on the icon and also is overlaying the term next to it –
    https://www.dropbox.com/s/kj82f4inml5r34r/social_icons_footer_widget_area_1.png?dl=0.

    I appreciate your help

    Kind Regards

    #575888

    In reply to: Mobile Issue

    Hi – I tried putting it on the top, but then my navigation color bar disappeared.
    This is what the codes I have and not sure which is affecting the color of the navigation bar.

    @media only screen and (min-width: 767px) {
    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 199px !important;
    }
    .av_secondary_right .sub_menu {
    padding-left: 10px;
    letter-spacing: 1px;
    }
    #menu-item-search {display:none;}
    div {letter-spacing: 0.5px;}
    #footer { font-size: 12px; }
    #footer {line-height: 150%;}
    #socket .container {
    padding-top: 5px;
    padding-bottom: 10px;
    }
    .main_color .avia-slider-testimonials .avia-testimonial-content { background: #00467F; }
    .main_color .avia-testimonial-content strong { color: white; }
    .avia-testimonial-arrow-wrap .avia-arrow {
    background: #00457F !important;
    border-color: #00457F !important;
    }
    a.iconbox_icon {
    background-color: transparent !important;
    background-image: url(http://www.accesssi.net/newsite/wp-content/uploads/2015/12/AccessSI_WhiteIcon.png);
    border: none !important;
    }
    a.iconbox_icon:before {
    content:none !important;
    }
    #top #wrap_all .custom-color-heading .av-special-heading-tag {
    font-weight: bold;
    }
    .hr-full, .hr-big {
    margin: 15px 0;
    }
    #top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a { font-weight: inherit; text-decoration: none; color: inherit; }
    #top h1 strong, #top h2 strong, #top h3 strong, #top h4 strong, #top h5 strong, #top h6 strong { color: inherit; }
    h1 { font-size: 28px; line-height: 1.3em; margin-bottom: 10px;}
    h2 { font-size: 23px; line-height: 1.1em; margin-bottom: 8px; }
    h3 { font-size: 18px; line-height: 1.1em; margin-bottom: 4px; }
    h4 { font-size: 14px; line-height: 1.1 em; }
    h5 { font-size: 14px; line-height: 1.1em; }
    h6 { font-size: 12px; line-height: 1.1em; }

    .footer_color b {
    color: #ffffff;
    letter-spacing: 0.75px;
    }
    #top .main_color .input-text, #top .main_color input[type=’text’], #top .main_color input[type=’input’], #top .main_color input[type=’password’], #top .main_color input[type=’email’], #top .main_color input[type=’number’], #top .main_color input[type=’url’], #top .main_color input[type=’tel’], #top .main_color input[type=’search’], #top .main_color textarea, #top .main_color select {
    border-color: #e1e1e1;
    background-color: #ffffff;
    color: #4d4d4d;
    }
    .ninja-forms-req-symbol {
    color: #1c93cf !important;
    }
    .ninja-forms-form-wrap label {
    padding-top: 10px !important;
    }
    .asc_rss .social_widget_icon {
    color: #fff;
    background-color: #007bb5;
    border-color: #007bb5;
    text-shadow: 1px 1px 1px #125688;
    }
    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 1000px;
    }
    #top .fullsize .template-blog .post-title {
    max-width: 1000px;
    }
    .small-preview .iconfont { display: none !important;
    }
    #top .fullsize .template-blog .blog-meta {
    display: none !important;
    }
    #top .flex_column .template-blog .post-title {
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    }
    .text-sep {
    padding: 0 5px;
    display: none !important;
    }
    .av-share-box .av-share-link-description {
    margin-bottom: 20px;
    font-size: 18px;
    color: #1c93cF;
    }
    body .alignleft, .entry-content-wrapper a:hover .alignleft {
    margin: 20px 20px 20px 0;
    }
    span.news-thumb.no-news-thumb {
    display: none !important;
    }
    h3 a:hover {
    color: #202759 !important;
    text-decoration: underline !important;
    }
    .caption_bottom .slideshow_caption .slideshow_inner_caption .slideshow_align_caption {
    text-shadow: 2px 2px 2px #000;
    letter-spacing: 2px;
    }
    #top .av_inherit_color * {
    letter-spacing: 1px;
    }
    .avia_transform .av_slideshow_full .avia-caption-title {
    letter-spacing: 2px;
    text-shadow: 2px 2px 2px #000;
    }
    .page .post-title a {
    pointer-events:none !important;
    }
    @media only screen and (max-width: 767px) {
    .avia-slideshow-arrows {
    display: none !important;
    }
    .slideshow_caption * {
    font-size: 12px !important;
    }
    }

    Hi,

    These code customizations were given by your moderator Yigit on my first ticket.
    You already have a screenshot I sent you on this ticket – see this link https://www.dropbox.com/s/c2o96ilx2d0f8aq/social_icons_footer_widget_area.JPG?dl=0:

    Thanks

    Elsa Soares

    #575438
    webWahine
    Participant

    Hi, something odd here and maybe I’ve missed something super easy. I looked at other posts about adding social icons into widgets and changed the default HTML to the following:

    <ul class='noLightbox social_bookmarks icon_count_4'>
    	
    	<li class='social_bookmarks_facebook av-social-link-facebook social_icon_1'><a target='_blank' href='https://www.facebook.com/holborngrp/' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Facebook'><span class='avia_hidden_link_text'>Facebook</span></a></li>
    	
    	<li class='social_bookmarks_twitter av-social-link-twitter social_icon_2'><a target='_blank' href='https://twitter.com/holborngrp' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Twitter'><span class='avia_hidden_link_text'>Twitter</span></a></li>
    	
    	<li class='social_bookmarks_instagram av-social-link-instagram social_icon_3'><a  href='https://www.instagram.com/holborngrp/' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Instagram'><span class='avia_hidden_link_text'>Instagram</span></a></li>
    	
    	<li class='social_bookmarks_linkedin av-social-link-linkedin social_icon_4'><a href='https://www.linkedin.com/company/holborn-holdings-ltd' target='_blank' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Linkedin'><span class='avia_hidden_link_text'>Linkedin</span></a></li>
    	
    </ul>

    The links are working as is the rollover but linkedin is still showing the Google+ icon and instagram is still showing skype. I’m putting my site link in the private area as it’s currently pwd protected. Please note that the socket is displaying properly but the issue is in my footer’s second column. Also, the order is not correct; again it should loook like the socket. Thanks!

    #575292
    nicbooth23
    Participant

    HI, I’m new to Enfold and have created a little blog at http://www.littlevictories.com.au. I added the social icons (for people to share posts, etc), however they appear as twin sets (small icons and square boxes) – and then they disappeared all by themselves. So did the comments area.

    I went back in and put it all back in, checked they were there, and then went away. And now they are gone again. An ad widget also appeared in a strange location where I had never put it. But then it too disappeared.

    It’s driving me a little crazy. Can anyone advise why this might be happening and what I can do to ensure that just one set of icons remain there all the time?

    I’ll need simple instructions!

    Many thanks :)

    Hey!

    Try adding this code to the Quick CSS:

    #top .asc_rss .social_widget_icon:before {
        content: "\e8fc";
    }
    #top .asc_rss .social_widget_icon{
        background: #1985bc;
    }

    Cheers! 
    Josue

    bemvestir
    Participant

    Hi,

    Related to my last ticket – “Social icons displayed vertically…”, I’ve these two issues, which you can check on the image – https://www.dropbox.com/s/c2o96ilx2d0f8aq/social_icons_footer_widget_area.JPG?dl=0:

    1 – After each social icon there is a “vertical line”.
    2 – Facebook social icon it’s misaligned with the others SM icons

    I appreciate your help.

    Kind Regards

    Elxa Soares

Viewing 30 results - 571 through 600 (of 986 total)