Viewing 30 results - 1,291 through 1,320 (of 2,320 total)
  • Author
    Search Results
  • #656427

    Hi Ismael

    1) I’m exactly the same, Windows 7, Chrome
    2) By “Mis-aligned” I mean center right is slightly lower down than center which is no good when I have a very tight amount of space to work with

    I’ve just realised I had set the tooltips to be perminantly on, so I’ve now changed it to on mouse hover, please take another look. I’ve attached screenshots and a short video below

    #656340

    In reply to: custom avia css

    Hi,

    Some of the css rules does not make sense. I assume you are trying to place the search box next to the search icon as seen in the below screenshot.

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-search-tooltip {
    	margin-top:-66px!important;
        border-radius: 0px;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        border-width: 0px;
        border-style: solid;
    }
    

    Best regards,
    Vinay

    #656289

    In reply to: custom avia css

    I’m just trying to change the search popup, the size and all, but the changes i’ve made in the style.css of my enflod-child them are not working :
    /*SearchTool*/
    .avia-search-tooltip{
    position: absolute;
    z-index: 9999999;
    padding:0;
    width: 300px;
    top: 85% !important;
    margin-left: -120px;
    border-radius: 0px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    border-width:0px;
    border-style: solid;
    }

    #656139

    Topic: custom avia css

    in forum Enfold
    louisziegle
    Participant

    Hi,

    I’m trying to custom the css of some elements like “avia-search-tooltip” but it’s like i’m doing nothing. I’m working with a child theme, and i’m wondering if i shouldn’t enqueue some more files in my functions.php ? Could anyone help me please ?
    Here’s my website : http://www.booksmatter.fr/about/
    Thank you,

    Louis

    #656129

    In reply to: Add new Element to ALB

    hello,

    i have create a Titeloben.php in shortcodes folder in my child-theme. I attached the php file. What must i change so that the shortcode is working and its a new element. this is the content:

    <?php
    /**
     * COLUMNS
     * Shortcode which creates columns for better content separation
     */
    
     // Don't load directly
    if ( !defined('ABSPATH') ) { die('-1'); }
    
    if ( !class_exists( 'avia_sc_titeloben' ) )
    {
    	class avia_sc_titeloben extends aviaShortcodeTemplate{
    
    			static $section_count = 0;
    			static $add_to_closing = "";
    			static $close_overlay = "";
    
    			/**
    			 * Create the config array for the shortcode button
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['name']		= __('TitelOben', 'avia_framework' );
    				$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-titeloben.png";
    				$this->config['tab']		= __('Layout Elements', 'avia_framework' );
    				$this->config['order']		= 20;
    				$this->config['shortcode'] 	= 'titeloben';
    				$this->config['html_renderer'] 	= false;
    				$this->config['tinyMCE'] 	= array('disable' => "true");
    				$this->config['tooltip'] 	= __('Creates a section with unique background image and colors', 'avia_framework' );
    				$this->config['drag-level'] = 1;
    				$this->config['drop-level'] = 1;
    
    			}
    
    			/**
    			 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
    			 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
    			 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
    			 *
    			 *
    			 * @param array $params this array holds the default values for $content and $args.
    			 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
    			 */
    
    			function editor_element($params)
    			{
    				extract($params);
    				$name = $this->config['shortcode'];
    				$data['shortcodehandler'] 	= $this->config['shortcode'];
        			$data['modal_title'] 		= $this->config['name'];
        			$data['modal_ajax_hook'] 	= $this->config['shortcode'];
    				$data['dragdrop-level'] 	= $this->config['drag-level'];
    				$data['allowed-shortcodes']	= $this->config['shortcode'];
    
        			if(!empty($this->config['modal_on_load']))
        			{
        				$data['modal_on_load'] 	= $this->config['modal_on_load'];
        			}
    
        			$dataString  = AviaHelper::create_data_string($data);
    
    				$output  = "<div class='avia_layout_section avia_pop_class avia-no-visual-updates ".$name." av_drag' ".$dataString.">";
    
    				$output .= "    <div class='avia_sorthandle menu-item-handle'>";
    				$output .= "        <span class='avia-element-title'>".$this->config['name']."</span>";
    			    //$output .= "        <a class='avia-new-target'  href='#new-target' title='".__('Move Section','avia_framework' )."'>+</a>";
    				$output .= "        <a class='avia-delete'  href='#delete' title='".__('Delete Section','avia_framework' )."'>x</a>";
    
    				if(!empty($this->config['popup_editor']))
        			{
        				$output .= "    <a class='avia-edit-element'  href='#edit-element' title='".__('Edit Section','avia_framework' )."'>edit</a>";
        			}
    				$output .= "<a class='avia-save-element'  href='#save-element' title='".__('Save Element as Template','avia_framework' )."'>+</a>";
    				$output .= "        <a class='avia-clone'  href='#clone' title='".__('Clone Section','avia_framework' )."' >".__('Clone Section','avia_framework' )."</a></div>";
    				$output .= "    <div class='avia_inner_shortcode avia_connect_sort av_drop' data-dragdrop-level='".$this->config['drop-level']."'>";
    				$output .= "<textarea data-name='text-shortcode' cols='20' rows='4'>".ShortcodeHelper::create_shortcode_by_array($name, $content, $args)."</textarea>";
    				if($content)
    				{
    					$content = $this->builder->do_shortcode_backend($content);
    				}
    				$output .= $content;
    				$output .= "</div></div>";
    
    				return $output;
    			}
    
    			/**
    			 * Popup Elements
    			 *
    			 * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
    			 * opens a modal window that allows to edit the element properties
    			 *
    			 * @return void
    			 */
    			function popup_elements()
    			{
    			    global  $avia_config;
    
    				$this->elements = array(
    
    					array(
    							"type" 	=> "tab_container", 'nodescription' => true
    						),
    											
    					array(
    							"type" 	=> "tab",
    							"name"	=> __("Section Layout",'avia_framework' ),
    							'nodescription' => true
    						),
    					
    					
    					array(
    						"name" 	=> __("Section Minimum Height",'avia_framework' ),
    						"id" 	=> "min_height",
    						"desc"  => __("Define a minimum height for the section. Content within the section will be centered vertically within the section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "",
    						"subtype" => array(   __('No minimum height, use content within section to define Section height','avia_framework' )	=>'',
    						                      __('At least 100&percnt; of Browser Window height','avia_framework' )=>'100',
    						                      __('At least 75&percnt; of Browser Window height','avia_framework' )	=>'75',
    											  __('At least 50&percnt; of Browser Window height','avia_framework' )	=>'50',
    											  __('At least 25&percnt; of Browser Window height','avia_framework' )	=>'25',
    											  __('Custom height in pixel','avia_framework' )	=>'custom',
    						                  )
    				    ),
    				    
    				    array(	
    							"name" 	=> __("Section custom height", 'avia_framework' ),
    							"desc" 	=> __("Define a minimum height for the section. Use a pixel value. eg: 500px", 'avia_framework' ) ,
    							"id" 	=> "min_height_px",
    							"required"=> array('min_height','equals','custom'),
    							"std" 	=> "500px",
    							"type" 	=> "input"),
    					
    				
    				    array(
    						"name" 	=> __("Section Padding",'avia_framework' ),
    						"id" 	=> "padding",
    						"desc"  => __("Define the sections top and bottom padding",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "default",
    						"subtype" => array(   __('No Padding','avia_framework' )	=>'no-padding',
    											  __('Small Padding','avia_framework' )	=>'small',
    						                      __('Default Padding','avia_framework' )	=>'default',
    						                      __('Large Padding','avia_framework' )	=>'large',
    						                      __('Huge Padding','avia_framework' )	=>'huge',
    						                  )
    				    ),
    
    /*
    				   array(
    						"name" 	=> __("Section Top Border Styling",'avia_framework' ),
    						"id" 	=> "shadow",
    						"desc"  => __("Chose a border styling for the top of your section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "no-shadow",
    						"subtype" => array( __('Display simple top border','avia_framework' )	=>'no-shadow',  
    											__('Display a small styling shadow at the top of the section','avia_framework' )	=>'shadow',
    											__('No border styling','avia_framework' )	=>'no-border-styling',
    						                      
    						                  )
    				    ),
    				    
    				    
    				    array(
    						"name" 	=> __("Section Bottom Border Styling",'avia_framework' ),
    						"id" 	=> "bottom_border",
    						"desc"  => __("Chose a border styling for the bottom of your section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "no-border-styling",
    						"subtype" => array(   
    											__('No border styling','avia_framework' )	=>'no-border-styling',
    											__('Display a small arrow that points down to the next section','avia_framework' )	=>'border-extra-arrow-down',
    						                  )
    				    ),
    				    
    				    array(	
    						"name" 	=> __("Display a scroll down arrow", 'avia_framework' ),
    						"desc" 	=> __("Check if you want to show a button at the bottom of the section that takes the user to the next section by scrolling down", 'avia_framework' ) ,
    						"id" 	=> "scroll_down",
    						"std" 	=> "",
    						"type" 	=> "checkbox"),
    */
    
    				  array(	"name" 	=> __("For Developers: Section ID", 'avia_framework' ),
    							"desc" 	=> __("Apply a custom ID Attribute to the section, so you can apply a unique style via CSS. This option is also helpful if you want to use anchor links to scroll to a sections when a link is clicked", 'avia_framework' )."<br/><br/>".
    									   __("Use with caution and make sure to only use allowed characters. No special characters can be used.", 'avia_framework' ),
    				            "id" 	=> "id",
    				            "type" 	=> "input",
    				            "std" => ""),
    				            
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    					array(
    							"type" 	=> "tab",
    							"name"  => __("Section Background" , 'avia_framework'),
    							'nodescription' => true
    						),
    						
    					/*	
    			        array(
    						"name" 	=> __("Section Colors",'avia_framework' ),
    						"id" 	=> "color",
    						"desc"  => __("The section will use the color scheme you select. Color schemes are defined on your styling page",'avia_framework' ) .
    						           '<br/><a target="_blank" href="'.admin_url('admin.php?page=avia#goto_styling').'">'.__("(Show Styling Page)",'avia_framework' )."</a>",
    						"type" 	=> "select",
    						"std" 	=> "main_color",
    						"subtype" =>  array_flip($avia_config['color_sets'])
    				    ),
    */
    				    array(
    							"name" 	=> __("Custom Background Color", 'avia_framework' ),
    							"desc" 	=> __("Select a custom background color for your Section here. Leave empty if you want to use the background color of the color scheme defined above", 'avia_framework' ),
    							"id" 	=> "custom_bg",
    							"type" 	=> "colorpicker",
    							"std" 	=> "",
    						),
    
    					array(
    							"name" 	=> __("Custom Background Image",'avia_framework' ),
    							"desc" 	=> __("Either upload a new, or choose an existing image from your media library. Leave empty if you want to use the background image of the color scheme defined above",'avia_framework' ),
    							"id" 	=> "src",
    							"type" 	=> "image",
    							"title" => __("Insert Image",'avia_framework' ),
    							"button" => __("Insert",'avia_framework' ),
    							"std" 	=> ""),
    					
    					
    					array(
    							"name" 	=> __("Custom Logo",'avia_framework' ),
    							"desc" 	=> __("Either upload a new, or choose an existing image from your media library. Leave empty if you want to use the background image of the color scheme defined above",'avia_framework' ),
    							"id" 	=> "srclogo",
    							"type" 	=> "image",
    							"title" => __("Insert Image",'avia_framework' ),
    							"button" => __("Insert",'avia_framework' ),
    							"std" 	=> ""),
    					
    					
    					
    					
    					
    					array(
    						"name" 	=> __("Background Attachment",'avia_framework' ),
    						"desc" 	=> __("Background can either scroll with the page, be fixed or scroll with a parallax motion", 'avia_framework' ),
    						"id" 	=> "attach",
    						"type" 	=> "select",
    						"std" 	=> "scroll",
                            "required" => array('src','not',''),
    						"subtype" => array(
    							
    							__('Parallax','avia_framework' ) =>'parallax'
    							
    							)
    						),
    					
                        array(
    						"name" 	=> __("Background Image Position",'avia_framework' ),
    						"id" 	=> "position",
    						"type" 	=> "select",
    						"std" 	=> "top left",
                            "required" => array('src','not',''),
    						"subtype" => array(   __('Top Left','avia_framework' )       =>'top left',
    						                      __('Top Center','avia_framework' )     =>'top center',
    						                      __('Top Right','avia_framework' )      =>'top right',
    						                      __('Bottom Left','avia_framework' )    =>'bottom left',
    						                      __('Bottom Center','avia_framework' )  =>'bottom center',
    						                      __('Bottom Right','avia_framework' )   =>'bottom right',
    						                      __('Center Left','avia_framework' )    =>'center left',
    						                      __('Center Center','avia_framework' )  =>'center center',
    						                      __('Center Right','avia_framework' )   =>'center right'
    						                      )
    				    ),
    /*
    	               array(
    						"name" 	=> __("Background Repeat",'avia_framework' ),
    						"id" 	=> "repeat",
    						"type" 	=> "select",
    						"std" 	=> "no-repeat",
                            "required" => array('src','not',''),
    						"subtype" => array(   __('No Repeat','avia_framework' )          =>'no-repeat',
    						                      __('Repeat','avia_framework' )             =>'repeat',
    						                      __('Tile Horizontally','avia_framework' )  =>'repeat-x',
    						                      __('Tile Vertically','avia_framework' )    =>'repeat-y',
    						                      __('Stretch to fit (stretches image to cover the element)','avia_framework' )     =>'stretch',
    						                      __('Scale to fit (scales image so the whole image is always visible)','avia_framework' )     =>'contain'
    						                      )
    				  ),
    
    	               */
    
    					
    					array(	
    						"name" 	=> __("Background Video", 'avia_framework' ),
    						"desc" 	=> __('You can also place a video as background for your section. Enter the URL to the Video. Currently supported are Youtube, Vimeo and direct linking of web-video files (mp4, webm, ogv)', 'avia_framework' ) .'<br/><br/>'.
    						__('Working examples Youtube & Vimeo:', 'avia_framework' ).'<br/>
    					<strong>http://vimeo.com/1084537</strong><br/> 
    					<strong>http://www.youtube.com/watch?v=5guMumPFBag</strong><br/><br/>',
    						"id" 	=> "video",
    						"std" 	=> "",
    						"type" 	=> "input"),
    						
    					array(	
    							"name" 	=> __("Video Aspect Ratio", 'avia_framework' ),
    							"desc" 	=> __("In order to calculate the correct height and width for the video slide you need to enter a aspect ratio (width:height). usually: 16:9 or 4:3.", 'avia_framework' )."<br/>".__("If left empty 16:9 will be used", 'avia_framework' ) ,
    							"id" 	=> "video_ratio",
    							"required"=> array('video','not',''),
    							"std" 	=> "16:9",
    							"type" 	=> "input"),
    					
    					array(	
    							"name" 	=> __("Hide video on Mobile Devices?", 'avia_framework' ),
    							"desc" 	=> __("You can chose to hide the video entirely on Mobile devices and instead display the Section Background image", 'avia_framework' )."<br/><small>".__("Most mobile devices can't autoplay videos to prevent bandwidth problems for the user", 'avia_framework' ) ."</small>" ,
    							"id" 	=> "video_mobile_disabled",
    							"required"=> array('video','not',''),
    							"std" 	=> "",
    							"type" 	=> "checkbox"),
    					
    					
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    					
    
    					
    array(
    							"type" 	=> "tab",
    							"name"  => __("Section Background Overlay" , 'avia_framework'),
    							'nodescription' => true
    						),
    					
    					array(	
    							"name" 	=> __("Enable Overlay?", 'avia_framework' ),
    							"desc" 	=> __("Check if you want to display a transparent color and/or pattern overlay above your section background image/video", 'avia_framework' ),
    							"id" 	=> "overlay_enable",
    							"std" 	=> "",
    							"type" 	=> "checkbox"),
    					
    					 array(
    						"name" 	=> __("Overlay Opacity",'avia_framework' ),
    						"desc" 	=> __("Set the opacity of your overlay: 0.1 is barely visible, 1.0 is opaque ", 'avia_framework' ),
    						"id" 	=> "overlay_opacity",
    						"type" 	=> "select",
    						"std" 	=> "0.5",
                            "required" => array('overlay_enable','not',''),
    						"subtype" => array(   __('0.1','avia_framework' )=>'0.1',
    						                      __('0.2','avia_framework' )=>'0.2',
    						                      __('0.3','avia_framework' )=>'0.3',
    						                      __('0.4','avia_framework' )=>'0.4',
    						                      __('0.5','avia_framework' )=>'0.5',
    						                      __('0.6','avia_framework' )=>'0.6',
    						                      __('0.7','avia_framework' )=>'0.7',
    						                      __('0.8','avia_framework' )=>'0.8',
    						                      __('0.9','avia_framework' )=>'0.9',
    						                      __('1.0','avia_framework' )=>'1',
    						                      )
    				  		),
    				  		
    				  	array(
    							"name" 	=> __("Overlay Color", 'avia_framework' ),
    							"desc" 	=> __("Select a custom  color for your overlay here. Leave empty if you want no color overlay", 'avia_framework' ),
    							"id" 	=> "overlay_color",
    							"type" 	=> "colorpicker",
                            	"required" => array('overlay_enable','not',''),
    							"std" 	=> "",
    						),
    				  	
    				  	array(
                            "required" => array('overlay_enable','not',''),
    						"id" 	=> "overlay_pattern",
    						"name" 	=> __("Background Image", 'avia_framework'),
    						"desc" 	=> __("Select an existing or upload a new background image", 'avia_framework'),
    						"type" 	=> "select",
    						"subtype" => array(__('No Background Image', 'avia_framework')=>'',__('Upload custom image', 'avia_framework')=>'custom'),
    						"std" 	=> "",
    						"folder" => "images/background-images/",
    						"folderlabel" => "",
    						"group" => "Select predefined pattern",
    						"exclude" => array('fullsize-', 'gradient')
    					),
    				  	
    				  	
    				  	array(
    							"name" 	=> __("Custom Pattern",'avia_framework' ),
    							"desc" 	=> __("Upload your own seamless pattern",'avia_framework' ),
    							"id" 	=> "overlay_custom_pattern",
    							"type" 	=> "image",
    							"fetch" => "url",
    							"secondary_img"=>true,
                            	"required" => array('overlay_pattern','equals','custom'),
    							"title" => __("Insert Pattern",'avia_framework' ),
    							"button" => __("Insert",'avia_framework' ),
    							"std" 	=> ""),
    					
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    
    							
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
                    );
    			}
    
    			/**
    			 * Frontend Shortcode Handler
    			 *
    			 * @param array $atts array of attributes
    			 * @param string $content text within enclosing form of shortcode element
    			 * @param string $shortcodename the shortcode found, when == callback name
    			 * @return string $output returns the modified html string
    			 */
    			function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    			{
    				global $avia_config;
    			
    				avia_sc_titeloben::$section_count ++;
    			    $atts = shortcode_atts(array(	'src' => '', 
    			    								'position' => 'top left', 
    			    								'repeat' => 'no-repeat', 
    			    								'attach' => 'scroll', 
    			    								'color' => 'main_color', 
    			    								'custom_bg' => '', 
    			    								'padding'=>'default' , 
    			    								'shadow'=>'shadow', 
    			    								'id'=>'', 
    			    								'min_height' => '', 
    			    								'min_height_px' => '', 
    			    								'video' => '', 
    			    								'video_ratio'=>'16:9', 
    			    								'video_mobile_disabled'=>'',
    			    								'custom_markup' => '',
    			    								'attachment' => '',
    			    								'attachment_size' => '',
    			    								'bottom_border' => '',
    			    								'overlay_enable' => '',
    			    								'overlay_opacity' => '',
    			    								'overlay_color' => '',
    			    								'overlay_pattern' => '',
    			    								'overlay_custom_pattern' => '',
    			    								'scroll_down' => ''
    			    								
    			    								), 
    			    							$atts, $this->config['shortcode']);
    							    							
    			    							
    				extract($atts);
    			    $output      = "";
    			    $class       = "avia-section ".$color." avia-section-".$padding." avia-".$shadow;
    			    $background  = "";
    				
    				
    				$params['id'] = !empty($id) ? AviaHelper::save_string($id,'-') :"av_section_".avia_sc_titeloben::$section_count;
    				$params['custom_markup'] = $meta['custom_markup'];
    				$params['attach'] = "";
    				
    				if(!empty($attachment) && !empty($attachment_size))
    				{
    					$attachment_entry = get_post( $attachment );
    					
    					if(!empty($attachment_entry))
    					{
    	                	if(!empty($attachment_size))
    						{
    							$src = wp_get_attachment_image_src($attachment_entry->ID, $attachment_size);
    							$src = !empty($src[0]) ? $src[0] : "";
    						}
    					}
    				}
    				else
    				{
    					$attachment = false;
    				}
    				
    				if($custom_bg != "")
    			    {
    			         $background .= "background-color: {$custom_bg}; ";
    			    }
    				
    				
    				/*set background image*/
    				if($src != "")
    				{
    					if($repeat == 'stretch')
    					{
    						$background .= "background-repeat: no-repeat; ";
    						$class .= " avia-full-stretch";
    					} 
    					else if($repeat == "contain")
    					{
    						$background .= "background-repeat: no-repeat; ";
    						$class .= " avia-full-contain";
    					}
    					else
    					{
    						$background .= "background-repeat: {$repeat}; ";
    					}
    				
    				     $background .= "background-image: url({$src}); ";
    				     $background .= $attach == 'parallax' ? "background-attachment: scroll; " : "background-attachment: {$attach}; ";
    				     $background .= "background-position: {$position}; ";
    				     
    				     
    				     
    				    if($attach == 'parallax')
    					{
    						$attachment_class = "";
    						if($repeat == 'stretch' || $repeat == 'no-repeat' ){ $attachment_class .= " avia-full-stretch"; }
    						if($repeat == 'contain'  ){ $attachment_class .= " avia-full-contain"; }
    					
    						$class .= " av-parallax-section";
    						$speed = apply_filters('avf_parallax_speed', "0.3", $params['id']); 
    						$params['attach'] .= "<div class='av-parallax' data-avia-parallax-ratio='{$speed}' >";
    						$params['attach'] .= "<div class='av-parallax-inner {$color} {$attachment_class}' style = '{$background}' >";
    						$params['attach'] .= "</div>";
    						$params['attach'] .= "</div>";
    						$background = "";
    					}
    					
    					
    					$params['data'] = "data-section-bg-repeat='{$repeat}'";
    					
    				}
    				else
    				{
    					$attach = "scroll";
    				}
    				
    				
    				if($custom_bg != "")
    			    {
    			         $background .= "background-color: {$custom_bg}; ";
    			    }
    
    			    
    				
    			
    			    if($background) $background = "style = '{$background}'";
    			    
    			    
    			    /*check/create overlay*/
    				$overlay 	= "";
    				$pre_wrap 	= "<div class='av-section-color-overlay-wrap'>" ;
    				if(!empty($overlay_enable))
    				{
    					$overlay_src = "";
    					$overlay = "opacity: {$overlay_opacity}; ";
    					if(!empty($overlay_color)) $overlay .= "background-color: {$overlay_color}; ";
    					if(!empty($overlay_pattern))
    					{
    						if($overlay_pattern == "custom")
    						{
    							$overlay_src = $overlay_custom_pattern;
    						}
    						else
    						{
    							$overlay_src = str_replace('{{AVIA_BASE_URL}}', AVIA_BASE_URL, $overlay_pattern);
    						}
    					}
    					
    					if(!empty($overlay_src)) $overlay .= "background-image: url({$overlay_src}); background-repeat: repeat;";
    					$overlay = "<div class='av-section-color-overlay' style='{$overlay}'></div>";
    					$class .= " av-section-color-overlay-active";
    					
    					$params['attach'] .= $pre_wrap . $overlay;
    					
    				}
    				
    				
    				
    				
    				if(!empty($scroll_down))
    				{	
    					if(!$overlay)
    					{
    					$params['attach'] .= $pre_wrap;	
    					}
    					$params['attach'] .= "<a href='#next-section' title='' class='scroll-down-link' ". av_icon_string( 'scrolldown' ). "></a>";
    				}
    			    
    			    
    			    
    				$class .= " avia-bg-style-".$attach;
    			    $params['class'] = $class." ".$meta['el_class'];
    			    $params['bg']    = $background;
    				$params['min_height'] = $min_height;
    				$params['min_height_px'] = $min_height_px;
    				$params['video'] = $video;
    				$params['video_ratio'] = $video_ratio;
    				$params['video_mobile_disabled'] = $video_mobile_disabled;
    				
    			    if(isset($meta['index']))
    			    {
    			    	if($meta['index'] == 0) 
    			    	{
    			    		$params['main_container'] = true;
    			    	}
    			    	
    			    	if($meta['index'] == 0 || (isset($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )))
    			    	{
    			    		$params['close'] = false;
    			    	}
    			    }
    		
    				
    				$avia_config['layout_container'] = "section";
    				
    				$output .= avia_new_section($params);
    				$output .=  ShortcodeHelper::avia_remove_autop($content,true) ;
    				
    				/*set extra arrow element*/
    				if(strpos($bottom_border, 'border-extra') !== false)
    				{
    					$backgroundEl = "";
    					$backgroundElColor = !empty($custom_bg) ? $custom_bg : $avia_config['backend_colors']['color_set'][$color]['bg'];
    					
    					if($backgroundElColor) $backgroundEl = " style='background-color:{$backgroundElColor};' ";
    					
    					avia_sc_titeloben::$add_to_closing = "<div class='av-extra-border-element {$bottom_border}'><div class='av-extra-border-outer'><div class='av-extra-border-inner' {$backgroundEl}></div></div></div>";
    				}
    				else
    				{
    					avia_sc_titeloben::$add_to_closing = "";
    				}
    				
    				
    				//next section needs an extra closing tag if overlay with wrapper was added:
    				if($overlay || !empty($scroll_down)) 
    				{ 
    					avia_sc_titeloben::$close_overlay = "</div>";
    				}
    				else
    				{
    					avia_sc_titeloben::$close_overlay = "";
    				}
    				
    				//if the next tag is a section dont create a new section from this shortcode
    				if(!empty($meta['siblings']['next']['tag']) && in_array($meta['siblings']['next']['tag'], AviaBuilder::$full_el))
    				{
    				    $skipSecond = true;
    				}
    
    				//if there is no next element dont create a new section. if we got a sidebar always create a next section at the bottom
    				if(empty($meta['siblings']['next']['tag']) && !avia_has_sidebar())
    				{
    				    $skipSecond = true;
    				}
    
    				if(empty($skipSecond))
    				{
    					$new_params['id'] = "after_section_".( avia_sc_titeloben::$section_count );
    					$output .= avia_new_section($new_params);
    				}
    				
    				unset($avia_config['layout_container']);
    				return $output;
    			}
    	}
    }
    
    if(!function_exists('avia_new_section'))
    {
    	function avia_new_section($params = array())
    	{
    		global $avia_section_markup, $avia_config;
    		
    	    $defaults = array(	'class'=>'main_color', 
    	    					'bg'=>'', 
    	    					'close'=>true, 
    	    					'open'=>true, 
    	    					'open_structure' => true, 
    	    					'open_color_wrap' => true, 
    	    					'data'=>'', 
    	    					"style"=>'', 
    	    					'id' => "", 
    	    					'main_container' => false, 
    	    					'min_height' => '',
    	    					'min_height_px' => '',
    	    					'video' => '',
    	    					'video_ratio' => '16:9',
    	    					'video_mobile_disabled' => '',
    	    					'attach' => "",
    	    					'before_new' => "",
    	    					'custom_markup' => ''
    	    					);
    	    
    	    
    	    
    	    $defaults = array_merge($defaults, $params);
    	    extract($defaults);
    			
    	    $post_class = "";
    	    $output     = "";
    	    $bg_slider  = "";
    	    $container_style = "";
    	    if($id) $id = "id='{$id}'";
    	
    	    //close old content structure. only necessary when previous element was a section. other fullwidth elements dont need this
    	    if($close) 
    	    {
    	    	$cm		 = avia_section_close_markup();
    	    	$output .= "</div></div>{$cm}</div>".avia_sc_titeloben::$add_to_closing.avia_sc_titeloben::$close_overlay."</div>";
    	    	
    		}
    	    //start new
    	    if($open)
    	    {	
    	        if(function_exists('avia_get_the_id')) $post_class = "post-entry-".avia_get_the_id();
    	
    	        if($open_color_wrap)
    	        {
    	        	if(!empty($min_height)) 
    	        	{
    	        		$class .= " av-minimum-height av-minimum-height-".$min_height;
    	        		if($min_height == 'custom' && $min_height_px != "")
    	        		{
    	        			$min_height_px 		= (int)$min_height_px;
    	        			$container_style 	= "style='height:{$min_height_px}px'";
    	        		}
    	        	}
    	        	
    	        	if(!empty($video)) 
    	        	{
    	        		$slide = array( 
    	        						'shortcode' => 'av_slideshow',  
    	        						'content' => '', 
    	        						'attr' => array( 	'id'=>'', 
    	        											'video'=>$video , 
    	        											'slide_type' => 'video', 
    	        											'video_mute' => true,
    	        											'video_loop' => true,
    	        											'video_ratio' => $video_ratio,
    	        											'video_controls' => 'disabled',
    	        											'video_section_bg' => true,
    	        											'video_format'=> '',
    	        											'video_mobile'	=>'',
    	        											'video_mobile_disabled'=> $video_mobile_disabled
    	        										)  
    	        						);
    	        		
    	        		
    	        		$bg_slider = new avia_slideshow( array('content' => array($slide) ) );
    	        		$bg_slider->set_extra_class('av-section-video-bg');
    	        		$class .= " av-section-with-video-bg";
    	        		$class .= !empty($video_mobile_disabled) ? " av-section-mobile-video-disabled" : "";
    	        		$data .= "  data-section-video-ratio='{$video_ratio}'";
    	        		
    	        	}
    	        	$output .= $before_new;
    	        	
    	        	if($class == "main_color") $class .= " av_default_container_wrap";
    	        	
    	        	$output .= "<div {$id} class='{$class} container_wrap ".avia_layout_class( 'main' , false )."' {$bg} {$data} {$style}>"; 
    	        	$output .= !empty($bg_slider) ? $bg_slider->html() : "";
    	        	$output .= $attach;
    	        	$output .= apply_filters('avf_section_container_add','',$defaults);
    	        }
    	
    	
    			//this applies only for sections. other fullwidth elements dont need the container for centering
    	        if($open_structure)
    	        {
    	        	if(!empty($main_container))
    	        	{
    					$markup = 'main '.avia_markup_helper(array('context' =>'content','echo'=>false, 'custom_markup'=>$custom_markup));
    					$avia_section_markup = 'main';
    				}
    				else
    				{
    					$markup = "div";
    				}
    				
    		        $output .= "<div class='container' {$container_style}>";
    		        $output .= "<{$markup} class='template-page content  ".avia_layout_class( 'content' , false )." units'>";
    		        $output .= "<div class='post-entry post-entry-type-page {$post_class}'>";
    		        $output .= "<div class='entry-content-wrapper clearfix'>";
    		        
    		       
    
    	        }
    	    }
    	    return $output;
    	
    	}
    }
    
    if(!function_exists('avia_section_close_markup'))
    {
    	function avia_section_close_markup()
    	{
    		global $avia_section_markup, $avia_config;
    		
    		if(!empty($avia_section_markup))
    		{
    			$avia_section_markup = false;
    						$close_markup = "</main><!-- close content main element -->";
    			
    		}
    		else
    		{
    			$close_markup = "</div><!-- close content main div -->"; 
    		}
    		
    		return $close_markup;
    	}
    }
    
    if(!function_exists('avia_section_after_element_content'))
    {
    	function avia_section_after_element_content($meta, $second_id = "", $skipSecond = false, $extra = "")
    	{
    	
    		$output = "</div>"; //close section
    		$output .= $extra;
    					
    		//if the next tag is a section dont create a new section from this shortcode
    		if(!empty($meta['siblings']['next']['tag']) && in_array($meta['siblings']['next']['tag'], AviaBuilder::$full_el )){ $skipSecond = true; }
    	
    		//if there is no next element dont create a new section.
    		if(empty($meta['siblings']['next']['tag'])) { $skipSecond = true; }
    		
    		if(empty($skipSecond)) { $output .= avia_new_section(array('close'=>false, 'id' => $second_id)); }
    		
    		return $output;
    	}
    }
    
    
    #655972

    Hey!

    1) If aligned “top center”, the tooltip flashes/blinks on an off constantly

    I’m sorry but I can’t reproduce the issue on Chrome, Windows 7. What is your browser and OS?

    2) If aligned left or right, top, center or bottom, it’s mis-aligned..

    What do you mean by mis-aligned? Note that you can set the tooltip to only display on mouse hover.

    Cheers!
    Ismael

    #655555

    In reply to: Enfold – Resume

    Hi Zrated09,

    If you enable debug mode in order to see shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/. You can then paste the following shortcode in a new page:

    [av_layout_row border='' min_height='0' color='main_color' mobile='av-fixed-cells' id='']
    [av_cell_one_third vertical_align='top' padding='3px,0px,0px,0px' background_color='#a0cdd2' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='3px,0px,0px,0px' background_color='#88aeb3' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='3px,0px,0px,0px' background_color='#697e81' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [/av_cell_one_third]
    [/av_layout_row]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_one_fifth first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' padding='0px,20px,0px,0px' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_image src='http://kriesi.at/themes/enfold-resume/files/2016/02/logo-profile-1.jpg' attachment='116' attachment_size='full' align='left' styling='circle' hover='' link='lightbox' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    
    [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px,20px,0px,0px' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_heading tag='h3' padding='0' heading='James T. Enfold' color='' style='blockquote modern-quote' custom_font='' size='40' subheading_active='subheading_below' subheading_size='18' custom_class='']
    iOS & Android Developer
    [/av_heading]
    
    [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_textblock size='13' font_color='' color='']
    Email: <a href="mailto: (Email address hidden if logged out) "> (Email address hidden if logged out) </a>
    Phone: <a href="tel:(555) 4167890">(555) 4167890</a>
    Web: <a href="http://kriesi.at">kriesi.at</a>
    [/av_textblock]
    
    [/av_one_fifth][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-32' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Introduction' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, <strong>enim</strong>. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [av_image src='http://test.kriesi.at/enfold-cv/wp-content/uploads/sites/15/2016/02/signature-1.png' attachment='77' attachment_size='full' align='left' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-32' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Professional Profile' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_textblock]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, <strong>enim</strong>. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_one_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_heading tag='h1' padding='0' heading='Recent Work' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_masonry_gallery ids='89,90,91,92' items='8' columns='2' paginate='none' size='fixed' gap='large' overlay_fx='active' caption_elements='none' caption_display='always' container_links='active' id='']
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-28' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Recent Jobs' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in']
    
    [av_heading tag='h1' padding='0' heading='Senior iOS Developer' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2015 - now
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullaollis pretium.
    <ul>
    <li>Integer tincidunt. Cras dapibus.</li>
    <li>Vivamus elementum semper nisi.</li>
    <li>Aenean vulputate eleifend tellus.</li>
    </ul>
    [/av_textblock]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='10px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue8bf' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Junior iOS Developer' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2012 - 2015
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Aenean vulputate eleifend tellus. Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, ju.
    <ul>
    <li>Nullaollis pretium.</li>
    <li>Vivamus elementum semper nisi.</li>
    </ul>
    [/av_textblock]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='10px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue8bf' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading=' iOS Trainee' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2008 - 2012
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullaollis pretium.
    <ul>
    <li>Integer tincidunt. Cras dapibus.</li>
    <li>Vivamus elementum semper nisi.</li>
    <li>Aenean vulputate eleifend tellus.</li>
    </ul>
    [/av_textblock]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-32' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Skills' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, <strong>nascetur</strong> ridiculus mus.
    [/av_textblock]
    
    [av_progress bar_styling='av-striped-bar' bar_animation='av-animated-bar']
    [av_progress_bar title='iOS Development' progress='90' color='theme-color' icon_select='no' icon='43' font='entypo-fontello']
    [av_progress_bar title='Android Development' progress='80' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [av_progress_bar title='HTML & CSS' progress='70' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [av_progress_bar title='Javascript' progress='70' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [av_progress_bar title='PHP' progress='60' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [/av_progress]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-28' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Education' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in']
    
    [av_heading tag='h1' padding='0' heading='Some Ivy League College' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2004 - 2008
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullaollis pretium.
    [/av_textblock]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='10px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue8bf' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Some funky Highschool in Jersey' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2000 - 2004
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Aenean vulputate eleifend tellus. Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, ju.
    [/av_textblock]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-28' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Social Media' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_font_icon icon='ue8f3' font='entypo-fontello' style='border' caption='' link='manually,#' linktarget='' size='40px' position='center' color=''][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_font_icon icon='ue8f1' font='entypo-fontello' style='border' caption='' link='manually,#' linktarget='' size='40px' position='center' color=''][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_font_icon icon='ue8fc' font='entypo-fontello' style='border' caption='' link='manually,#' linktarget='' size='40px' position='center' color=''][/av_font_icon]
    
    [/av_one_fifth][/av_section][av_google_map height='400px' zoom='16' saturation='-50' hue='#a0cdd2' zoom_control='aviaTBzoom_control']
    [av_gmap_location address='5th Avenue' city='' country='New York' long='-73.96537339999998' lat='40.7747314' marker='112' imagesize='40' tooltip_display=''][/av_gmap_location]
    [/av_google_map]
    

    Best regards,
    Rikard

    #655480
    Aaron
    Participant

    I’ve got relative posts displaying at the bottom of my individual blog posts. Each of which has a tool tip that should display above the thumbnail when hovering over the thumbnail.

    The css gets updated but the tip is missing. If I force the css to display the tool tip all tool tips display accurately though at the same time, which is not the desired behavior.

    Is this a known issue?…I’m not certain when it began, but I do know that I had to do that avia.js update to get the theme to work when updating to the newer wordpress version.

    Not hovered:
    <div class="avia-related-tooltip avia-tt" style="top: -24px; left: 247.375px; display: none; opacity: 0;">

    Hovered:
    <div class="avia-related-tooltip avia-tt" style="top: -24px; left: 247.375px; display: block; opacity: 1;">
    Yet, as mentioned, when hovered the tool tip is not showing…it’s only when I manually update the css does it display correctly.

    I’m looking at avia.js for a fix, but am a bit lost to what the issue might be.

    • This topic was modified 9 years, 8 months ago by Aaron.
    #653901
    druzes
    Participant

    Hi, how can i disable all image tooltips when the user goes over the images?
    Regards

    #653730

    Hey Rikard, sorry for the bad description! Ive modified the social icons to the volkswagen and audi logos at my header.
    Now if i cross the icons with my mouse i see the image tooltip “Vimeo” etc like in my screenshot. Is there a way to edit oder remove this tooltips?
    Thanks in advance, Jan

    markkus2
    Participant

    Hello, i’ve changed the consulting demo from sidebar menu to top menu and now the menu always has a blue bar on top (avia-tooltip? “body, body .avia-tooltip” in firebug) which is staying while scrolling down. Has somebody a hint how i can stick the menu/header absolutely to the top of the browser window, because i didn’t find the right tag.
    http://tinyurl.com/goug9pb

    Thanks Markus

    #651436
    mikebackhouse
    Participant

    Hi guys

    I’m having a big headache with the image with hotspots. I’m trying to create an online course, and each slide uses an image with very precise hotspots. The problems I’m having are:

    1) If aligned “top center”, the tooltip flashes/blinks on an off constantly
    2) If aligned left or right, top, center or bottom, it’s mis-aligned..

    See screenshot below.. the tooltip should be appearing next to the hotspot above it!!

    screenshot

    Please Help! I’m working to a REALLY tight deadline here, and I can’t think of any other way of doing this :(

    • This topic was modified 9 years, 8 months ago by mikebackhouse.
    #651108
    3ejoueur
    Participant

    Hi guys!

    Our client site was not loading and we got this error:
    /wp-content/themes/enfold/js/avia.js?ver=3 net::ERR_CONNECTION_RESET
    shortcodes.js?ver=3:36 Uncaught TypeError: $.AviaTooltip is not a constructor

    We followed the procedure described in this post: https://kriesi.at/support/topic/slider-and-google-maps-not-working-after-3-52-and-4-5-updates/ but we still got the issue..

    Could you please have a look at it.

    FYI, we disabled the preloading option from theme option and the site load but we still got the error and some features are not correctly load…

    Thanks in advance!

    JP

    #648573

    Hi Rikard,
    I already found a solution.
    I made the tooltips invisible and photoshoped the logos on the background map.

    Thanks anyway.
    Regards,
    Ricarda

    #647834

    Thanks for the share Natalie!
    That’s a nice work around for the time being.
    Obviously, when you mouseover the icon, the tooltip hover will say ‘Flickr’, so it’s not 100% there, but definitely a good start

    On my site my social icons are Facebook, Twitter, YouTube, Weibo… I can imagine people thinking “Wait… what’s that icon?”
    Then they hover over and it says Flickr. A little confusing :)

    Andy: Thanks. Be good to bottom it out. Maybe there’s a restriction on the array size or something?

    #647302
    Ricarda88
    Participant

    Hi there,
    first of all, thanks for the theme, it is awesome.

    Now my question:
    I was wondering if it is possible to use an image as a tooltip, instead of the circle, on the Image with Hotspots Snippet.
    So I would like to edit the tooltip itself, not only the style.

    My background is a map and I would like to use 3 different logos to show the position of hotels.

    Thank you,
    Ricarda

    #646644

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-tooltip {
    display:none!important;
    }
    

    Best regards,
    Vinay

    #644465

    In reply to: Caption in Lightbox?

    Hi,

    Is there a way to remove the yellow labels without losing the lightbox captions?

    I’m sorry but this is not possible without removing the title attribute. The “yellow tooltip” is a browser feature that is triggered when an element contains a title attribute.

    Best regards,
    Ismael

    #641770

    Topic: Map View and List View

    in forum Enfold
    Tia
    Participant

    Hi

    I am plotting a number of locations on a map. Ideally I would like an image and link in the marker tooltip and also the same content to be displayed in a list view for all the locations below the map. I have achieved this using the Google Map with html in the tooltip and a list view below made up of accordion blocks with the same html for each corresponding number. This is okay but not great and it is a lot of duplicate work. I will proceed with this but before I do I just wondered if I am using the best and most elegant solution.

    I include login details in the private content.

    Thanks,
    Tia

    #640610

    Hi!

    Add to your Custom CSS area

    .avia-search-tooltip {
    border: none;
    }

    and let me know if that is working for u.

    Thanks a lot

    Cheers!
    Basilis

    #640565

    Hi sorry, but while waiting for your answer I went thinking on about the solution and I imagine I got it! Since it may serve for others, I’d like to report here the procedure I adopted. Maybe you can also answer to a question (see at the bottom of the codes)

    First of all I created a new function on the file class-wc-product-variation.php that is found in woocommerce/includes/
    The function is more or less the modified copy of the get_formatted_name at line 741 of the file. My new function is called get_formatted_variations_name and returns a string which gives the title of the variation and the price. Here it is:

    STEP 1

    
    	/**
    	 * Get product variation name. Used within admin.
    	 *
    	 * @return string Formatted product name, including attributes and price
    	 */
    	public function get_formatted_variations_name() {
    		if ( $this->get_sku() ) {
    			$identifier = $this->get_sku();
    		} else {
    			$identifier = '';
    		}
    
    		$formatted_attributes = $this->get_formatted_variation_attributes( true );
    		$variation_name = substr($formatted_attributes, 27);
    		$extra_data           = $variation_name . ' &ndash; ' . wc_price( $this->get_price() );
    
    		return sprintf( __( '%s', 'woocommerce' ), $extra_data );
    	}
    

    STEP 2)
    I created a new avia element called “calendar’ in which I call the function stated before, together with the stock data in a loop, in order to extract all variation for a determined product. In my case the product was called “CSR Expeditions Payment” and the variations are the dates of the cruises. The $loop passes all the products, and before outputting the data I need, I filter the product of interest (in this case CSR Expeditions Payment).

     
    <?php
    if( !class_exists( 'woocommerce' ) )
    {
    	add_shortcode('csr_calendar_button', 'avia_please_install_woo');
    	return;
    }
    
    if ( !class_exists( 'avia_csr_calendar_button' ) )
    {
    	class avia_csr_calendar_button extends aviaShortcodeTemplate
    	{
    		/**
    		 * Create the config array for the shortcode button
    		 */
    		function shortcode_insert_button()
    		{
    			$this->config['name']		= __('CSR Calendar', 'avia_framework' );
    			$this->config['tab']		= __('Plugin Additions', 'avia_framework' );
    			$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    			$this->config['order']		= 23;
    			$this->config['target']		= 'avia-target-insert';
    			$this->config['shortcode'] 	= 'csr_calendar_button';
    			$this->config['tooltip'] 	= __('Display the "CSR Calnedar" button for the current product', 'avia_framework' );
    			$this->config['drag-level'] = 3;
    			$this->config['tinyMCE'] 	= array('disable' => "true");
    			$this->config['posttype'] 	= array('product',__('This element can only be used on single product pages','avia_framework'));
    		}
    
    		/**
    		 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
    		 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
    		 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
    		 *
    		 *
    		 * @param array $params this array holds the default values for $content and $args.
    		 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
    		 */
    		function editor_element($params)
    		{
    			$params['innerHtml'] = "<img />config['icon']."' title='".$this->config['name']."' />";
    			$params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
    			$params['content'] 	 = NULL; //remove to allow content elements
    			return $params;
    		}
    
    		/**
    		 * Frontend Shortcode Handler
    		 *
    		 * @param array $atts array of attributes
    		 * @param string $content text within enclosing form of shortcode element
    		 * @param string $shortcodename the shortcode found, when == callback name
    		 * @return string $output returns the modified html string
    		 */
    		function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    		{
    			$output = "";
    			$meta['el_class'];
    			
    			global $woocommerce, $product;
    			if(!is_object($woocommerce) || !is_object($woocommerce->query) || empty($product)) return;
    
    			// $product = wc_get_product();
    			
    			$output .= "<div class='av-woo-calendar-button ".$meta['el_class']."'>";
    			ob_start();?>
    			
                    <table cellspacing="0" cellpadding="2">
                        <thead>
                            <tr>
                                <th scope="col" style="text-align:left;"><?php _e('Cruise', 'woothemes'); ?></th>
                                <th scope="col" style="text-align:left;"><?php _e('Places availability', 'woothemes'); ?></th>
                            </tr>
                        </thead>
                        <tbody>
                        <?php
                        
                        $args = array(
                            'post_type'			=> 'product_variation',
                            'post_status' 		=> 'publish',
                            'posts_per_page' 	=> -1,
                            'orderby'			=> 'title',
                            'order'				=> 'DESC',
                            'meta_query' => array(
                                array(
                                    'key' 		=> '_stock',
                                    'value' 	=> array('', false, null),
                                    'compare' 	=> 'NOT IN'
                                )
                            )
                        );
                        
                        $loop = new WP_Query( $args );
                    
                        while ( $loop->have_posts() ) : $loop->the_post();
                        
                                        $product = new WC_Product_Variation( $loop->post->ID );
                                if (get_the_title( $loop->post->post_parent ) == 'CSR Expeditions Payment')
                                {		
                            ?>
                            <tr>
                                <td><?php  echo $product->get_formatted_variations_name(); ?></td>
                                <td><?php echo intval ($product->stock); ?></td>
                            </tr>
                            <?php
                                }
                        endwhile; 
                        
                        ?>
                        </tbody>
                    </table>
    		
    			<?php
    			
    			$output .= ob_get_clean();
    			$output .= "</div>";
    			
    			return $output;
    		}
    	}
    }
    

    CONSIDERATIONS

    1) It seems working by now, but I have to add it AFTER the product purchase button, otherwise the purchase button doesn’t appear… still have to figure out why

    2) I still am trying to see where I can save my new function in the child theme folde. I tried to add it to a subfolder woocommerce/includes, but it doesn’t work like that. By now I left the new function in the original woocommerce file class-wc-product-variation.php, but it is not a good solution as if I update the plugin the modifications would be lost. HERE’S MY QUESTION: do you know where I should save it??

    Thanks again
    Elena

    #640559

    Hi Andy, I think I got it! Since it may serve for others I report here the procedure I adopted. Maybe you can also answer to a question (see at the bottom of the codes)

    First of all I created a new function on the file class-wc-product-variation.php that is found in woocommerce/includes/
    The function is more or less the modified copy of the get_formatted_name at line 741 of the file. My new function is called get_formatted_variations_name and returns a string which gives the title of the variation and the price. Here it is:

    STEP 1

    
    	/**
    	 * Get product variation name. Used within admin.
    	 *
    	 * @return string Formatted product name, including attributes and price
    	 */
    	public function get_formatted_variations_name() {
    		if ( $this->get_sku() ) {
    			$identifier = $this->get_sku();
    		} else {
    			$identifier = '';
    		}
    
    		$formatted_attributes = $this->get_formatted_variation_attributes( true );
    		$variation_name = substr($formatted_attributes, 27);
    		$extra_data           = $variation_name . ' &ndash; ' . wc_price( $this->get_price() );
    
    		return sprintf( __( '%s', 'woocommerce' ), $extra_data );
    	}
    

    STEP 2)
    I created a new avia element called “calendar’ in which I call the function stated before, together with the stock data in a loop, in order to extract all variation for a determined product. In my case the product was called “CSR Expeditions Payment” and the variations are the dates of the cruises. The $loop passes all the products, and before outputting the data I need, I filter the product of interest (in this case CSR Expeditions Payment).

     
    <?php
    if( !class_exists( 'woocommerce' ) )
    {
    	add_shortcode('csr_calendar_button', 'avia_please_install_woo');
    	return;
    }
    
    if ( !class_exists( 'avia_csr_calendar_button' ) )
    {
    	class avia_csr_calendar_button extends aviaShortcodeTemplate
    	{
    		/**
    		 * Create the config array for the shortcode button
    		 */
    		function shortcode_insert_button()
    		{
    			$this->config['name']		= __('CSR Calendar', 'avia_framework' );
    			$this->config['tab']		= __('Plugin Additions', 'avia_framework' );
    			$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    			$this->config['order']		= 23;
    			$this->config['target']		= 'avia-target-insert';
    			$this->config['shortcode'] 	= 'csr_calendar_button';
    			$this->config['tooltip'] 	= __('Display the "CSR Calnedar" button for the current product', 'avia_framework' );
    			$this->config['drag-level'] = 3;
    			$this->config['tinyMCE'] 	= array('disable' => "true");
    			$this->config['posttype'] 	= array('product',__('This element can only be used on single product pages','avia_framework'));
    		}
    
    		/**
    		 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
    		 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
    		 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
    		 *
    		 *
    		 * @param array $params this array holds the default values for $content and $args.
    		 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
    		 */
    		function editor_element($params)
    		{
    			$params['innerHtml'] = "<img />config['icon']."' title='".$this->config['name']."' />";
    			$params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
    			$params['content'] 	 = NULL; //remove to allow content elements
    			return $params;
    		}
    
    		/**
    		 * Frontend Shortcode Handler
    		 *
    		 * @param array $atts array of attributes
    		 * @param string $content text within enclosing form of shortcode element
    		 * @param string $shortcodename the shortcode found, when == callback name
    		 * @return string $output returns the modified html string
    		 */
    		function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    		{
    			$output = "";
    			$meta['el_class'];
    			
    			global $woocommerce, $product;
    			if(!is_object($woocommerce) || !is_object($woocommerce->query) || empty($product)) return;
    
    			// $product = wc_get_product();
    			
    			$output .= "<div class='av-woo-calendar-button ".$meta['el_class']."'>";
    			ob_start();?>
    			
                    <table cellspacing="0" cellpadding="2">
                        <thead>
                            <tr>
                                <th scope="col" style="text-align:left;"><?php _e('Cruise', 'woothemes'); ?></th>
                                <th scope="col" style="text-align:left;"><?php _e('Places availability', 'woothemes'); ?></th>
                            </tr>
                        </thead>
                        <tbody>
                        <?php
                        
                        $args = array(
                            'post_type'			=> 'product_variation',
                            'post_status' 		=> 'publish',
                            'posts_per_page' 	=> -1,
                            'orderby'			=> 'title',
                            'order'				=> 'DESC',
                            'meta_query' => array(
                                array(
                                    'key' 		=> '_stock',
                                    'value' 	=> array('', false, null),
                                    'compare' 	=> 'NOT IN'
                                )
                            )
                        );
                        
                        $loop = new WP_Query( $args );
                    
                        while ( $loop->have_posts() ) : $loop->the_post();
                        
                                        $product = new WC_Product_Variation( $loop->post->ID );
                                if (get_the_title( $loop->post->post_parent ) == 'CSR Expeditions Payment')
                                {		
                            ?>
                            <tr>
                                <td><?php  echo $product->get_formatted_variations_name(); ?></td>
                                <td><?php echo intval ($product->stock); ?></td>
                            </tr>
                            <?php
                                }
                        endwhile; 
                        
                        ?>
                        </tbody>
                    </table>
    		
    			<?php
    			
    			$output .= ob_get_clean();
    			$output .= "</div>";
    			
    			return $output;
    		}
    	}
    }
    

    CONSIDERATIONS

    1) It seems working by now, but I have to add it AFTER the product purchase button, otherwise the purchase button doesn’t appear… still have to figure out why

    2) I still am trying to see where I can save my new function in the child theme folde. I tried to add it to a subfolder woocommerce/includes, but it doesn’t work like that. By now I left the new function in the original woocommerce file class-wc-product-variation.php, but it is not a good solution as if I update the plugin the modifications would be lost. HERE’S MY QUESTION: do you know where I should save it??

    Thanks again
    Elena

    • This reply was modified 9 years, 9 months ago by elenapoliti.
    #639466

    Ok, I’ve just realised that if I open up the Edit Hotspot tooltip and change the text from

    SHAPING UP

    to just

    SHAPING UP

    then the font matches, brilliant. Is there a way to make it red though like it was in (strong) mode?

    #637609

    Sorry Andy my keyboard is not working fine.
    Let me rephrase.
    You told me to change this:
    ul {
    list-style: disc outside;
    margin-left: 7px;
    }
    to this
    .avia-tooltip ul {
    list-style: disc outside;
    }

    I did and it solved the Menu problem. But the code
    ul {
    list-style: disc outside;
    margin-left: 7px;
    }
    was given to me for a previous and different fix in different ticket, to Adapt icon borders. So my question is now i removed it, will it affect the older fix that has to do with icon borders.
    I hope i made it clear enough and understandable

    Thank you

    #636664

    Hi!

    One LayerSlider user, Mike, kindly provided his solution. Please see below

    To solve his screen width problem, he needs to do the following:

    1. Get into Layer Slider, open a slide set and then click on Slider Settings.

    2. Under ‘Layout’, look for the heading ‘Full-width slider settings’ and, under that, the item ‘Layers container’. He will see the note alongside which explains what he is experiencing. It says that this setting : “Creates an invisible inner container with the given dimension in pixels to hold and center your layers.”

    This setting works in all cases – whether Full Width is selected or not.

    When this slide width setting is increased or decreased, it shows more or less of the slide (horizontally) depending on the adjustment. All horizontal layer-element positions are measured from the left side of this invisible container. So as the container is widened or narrowed, all layered elements move to the left or to the right with the left wall. All he has to do is change this setting to match the width of his slider images and he will see the whole slide in its proper perspective.

    In full width mode, another setting also comes into play with some unexpected effects on the presentation of the slides on a screen that is above the responsive size. That is the setting just above that one called ‘Responsive under’ . This setting’s description says “Turns on responsive mode in a full-width slider under the specified value in pixels. Can only be used with full-width mode”.

    I was using some really long thin slides – 1900 x 500 pixels and the end were cut off by the edge of the screen, as would be expected when maintaining a 500 pixel height. However, the more that I increase this ‘Responsive under’ setting in Full Screen mode, the more of the slides’ hidden sides come into view, narrowing the height in proportion until the whole slide is in view at a 1900 pixel setting and the slide height has narrowed to about 453 pixels. This obviously affects the placement of the animated layers on the screen as well.

    Your customer also complains about the lack of documentation. With the purchased version, I received some documentation in which the vendor, Kreatura Media says under ‘Using the Slider Builder’ : “Always read the tooltips messages. Due to space efficiency we’re using tooltips for describing what each options exactly does. Just place your mouse cursor over an option and a tooltip message will appear with additional information.”

    Cheers!
    Yigit

    #635919

    Hi,

    You simply should remove

    ul {
    list-style: disc outside;
    margin-left: 7px;
    }

    and insert

    .avia-tooltip ul {
        list-style: disc outside;
    }

    Best regards,
    Yigit

    #635873
    None
    Participant

    Hello,

    For a particular gallery I would like to disable the lazyload feature and just have the thumbnails shown right away.
    How can this be done?

    Simply removing “avia_lazyload avia_animate_when_visible” from my code does not work, as it shows the ‘greyed’ out thumbnail:

    <div class='avia-gallery avia-gallery-3 avia_lazyload avia_animate_when_visible  avia-builder-el-12  el_after_av_textblock  avia-builder-el-last '  itemscope="itemscope" itemtype="https://schema.org/ImageObject" ></a>
                       <div class='avia-gallery-thumb'> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_bb_superbig-1030x579.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_bb_superbig-710x270.jpg' class='first_thumb lightbox ' data-onclick='1' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_bb_superbig-80x80.jpg' width='80' height='80'  title='dash_bb_superbig' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_ball.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_ball-710x270.jpg' class='lightbox ' data-onclick='2' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_ball-80x80.jpg' width='80' height='80'  title='dash_ball' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_shoe.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_shoe-710x270.jpg' class='lightbox ' data-onclick='3' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_shoe-80x80.jpg' width='80' height='80'  title='dash_shoe' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_start.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_start-710x270.jpg' class='lightbox ' data-onclick='4' title='This was a cool Startbutton for a recent Project'  itemprop="contentURL" ><img data-avia-tooltip='This was a cool Startbutton for a recent Project' src='http://kriesi.at/themes/enfold/files/2011/12/dash_start-80x80.jpg' width='80' height='80'  title='dash_start' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_tresor.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_tresor-710x270.jpg' class='lightbox ' data-onclick='5' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_tresor-80x80.jpg' width='80' height='80'  title='dash_tresor' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_tresor_concept.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_tresor_concept-710x270.jpg' class='lightbox ' data-onclick='6' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_tresor_concept-80x80.jpg' width='80' height='80'  title='dash_tresor_concept' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_glass.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_glass-710x270.jpg' class='lightbox ' data-onclick='7' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_glass-80x80.jpg' width='80' height='80'  title='dash_glass' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_glass2.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_glass2-710x270.jpg' class='lightbox ' data-onclick='8' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_glass2-80x80.jpg' width='80' height='80'  title='dash_glass2' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_monitor.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_monitor-710x270.jpg' class='lightbox ' data-onclick='9' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_monitor-80x80.jpg' width='80' height='80'  title='dash_monitor' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_wallpaper.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_wallpaper-710x270.jpg' class='lightbox ' data-onclick='10' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_wallpaper-80x80.jpg' width='80' height='80'  title='dash_wallpaper' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-1030x772.png' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-710x270.png' class='lightbox ' data-onclick='11' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-80x80.png' width='80' height='80'  title='superbig_dash_shoe' alt='' /></a>
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-1030x772.png' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-710x270.png' class='lightbox ' data-onclick='11' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-80x80.png' width='80' height='80'  title='superbig_dash_shoe' alt='' /></a>
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-1030x772.png' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-710x270.png' class='lightbox ' data-onclick='11' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-80x80.png' width='80' height='80'  title='superbig_dash_shoe' alt='' /></a>
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-1030x772.png' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-710x270.png' class='lightbox ' data-onclick='11' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-80x80.png' width='80' height='80'  title='superbig_dash_shoe' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2012/04/013.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2012/04/013-710x270.jpg' class='lightbox ' data-onclick='12' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2012/04/013-80x80.jpg' width='80' height='80'  title='' alt='' /></a>
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_glass2.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_glass2-710x270.jpg' class='lightbox ' data-onclick='8' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_glass2-80x80.jpg' width='80' height='80'  title='dash_glass2' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_monitor.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_monitor-710x270.jpg' class='lightbox ' data-onclick='9' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_monitor-80x80.jpg' width='80' height='80'  title='dash_monitor' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/dash_wallpaper.jpg' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/dash_wallpaper-710x270.jpg' class='lightbox ' data-onclick='10' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/dash_wallpaper-80x80.jpg' width='80' height='80'  title='dash_wallpaper' alt='' /></a> 
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-1030x772.png' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-710x270.png' class='lightbox ' data-onclick='11' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-80x80.png' width='80' height='80'  title='superbig_dash_shoe' alt='' /></a>
                      <a href='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-1030x772.png' data-rel='gallery-3' data-prev-img='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-710x270.png' class='lightbox ' data-onclick='11' title=''  itemprop="contentURL" ><img  src='http://kriesi.at/themes/enfold/files/2011/12/superbig_dash_shoe-80x80.png' width='80' height='80'  title='superbig_dash_shoe' alt='' /></a>
                      </div>
                    </div>
    #634890

    Hi!

    That code affects all lists in the site so you have to replace it with the other code that we suggested above:

    .avia-tooltip ul {
        list-style: disc outside;
    }

    Cheers!
    Ismael

    #633315

    Hi Jihad!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia-tooltip.avia-tt {
        width: 200px;
    }

    Regards,
    Yigit

    #633120

    Hi!

    Please add following code to Quick CSS

    .inner_tooltip h3 {
        font-style: italic !important;
    }

    Cheers!
    Yigit

Viewing 30 results - 1,291 through 1,320 (of 2,320 total)