Viewing 30 results - 4,951 through 4,980 (of 18,734 total)
  • Author
    Search Results
  • #1121891
    Jerome
    Participant

    Hey guys,

    I have one question. On this page (private-section), there six buttons with squaremeters etc. I want to make the buttons in the same size ( same width).
    Normaly it is not a problem. I tested it with the chrome-console, i used this code:

    .avia-button.avia-size-medium {
        padding: 12px 24px 10px;
        font-size: 13px;
        min-width: 150px;
    }

    I looks perfect, but when i put it into the quick css in enfold. Nothing changed… this is a littlebit weird.
    I refreshed the page, deleted chache and purged the cdn… maybe the code is wrong. Do you have a idea how to solve this problem?

    Would be great.

    Cheers,
    Jerome

    #1121845

    sure, I will rethink the structure. anyhow, in theory, how to reduce the space between the rows and collums, the padding of every menu item.
    aswell, how to adjust font sizes?

    and:

    how to center the mega menu in a relative way, instead of an absolute way (margin to left or right)?

    thank you very much for your help!

    #1121791

    Hi,

    Thank you for the update.

    This css code overrides the font-size property.

    #top #header .av-main-nav > li > a {
        color: #ffffff;
        font-size: 15px;
        font-family: "open sans","HelveticaNeue","Helvetica Neue","Helvetica-Neue",Helvetica,Arial,sans-serif;
    }
    

    The menu font size is still set to 15px. Please remove that code or place the latest code below it. You can also add the !important rule to the latest code so that it takes priority.

    This is how the header should look like after.

    // https://imgur.com/a/x7vCa1a

    Best regards,
    Ismael

    Euroson
    Participant

    Hello Everyone,
    I would like to make an H1 tag from the Caption Title within the Fullscreen Slider element but it doesn’t seem to be giving me the results I’m expecting

    Using the Avia Layout Builder, here are the steps I took for the initial slider creation:
    1. Add Fullscreen Slider from the Media Elements tab
    2. Add an image to the slide show
    3. Enter “POINT STORAGE MANAGER” in the Caption Title box and set to font size 70px
    4. Enter “Archiving Solutions for Windows, NetApp, EMC, and NAS Systems” in the Caption Text box and set to 35px

    Now that I’d like to make POINT STORAGE MANAGER an H1 tag, I first tried just the basics of adding <h1> and </h1> before and after the Caption Title text. This did work in terms of making the Caption an H1 tag, but it changed the color of the Caption from white to black, and also reduced the font size to what looks to be more like 25px.

    I then fiddled with strings like style=”color:#FFFFFF” to retain the white color, and style=”font-size:70px to retain the original font size, but these didn’t seem to work either. Please note I’m not a web designer or HTML programmer, so I gave it my best shot at adding these items to the string, which I may have done incorrectly

    So, if anybody can provide the correct syntax (or alternate workaround) that would be great. I’d like to:
    1. Make the Caption Title POINT STORAGE MANAGER an H1 tag
    2. Set or retain the color as white
    3. Set or retain the font size as 70px
    4. Leave the Caption Text as Archiving Solutions for Windows, NetApp, EMC, and NAS Systems
    5. Set or retain the color as white
    6. Set or retain the font size as 35

    Cheers,
    Paul

    #1121609

    Hello Victoria!

    Thank you very much for the CSS.
    It does pull the mega menu into the screen, but it doesn’t center it in a relative way. So, on different screen sizes it is shifted to a certain degree.

    1.) Is there a way to do that in some kind of “responsive” way?
    (For screensizes below 767px our main menu in the header switches anyway to a burger menu.)

    2.) Aswell, the entire size of the “dropdown” mega menu is too large. I would like to reduce it so it fits to a regular screen.
    Therefore I would need to reduce the space between the rows and collums, and the padding of every menu item. aswell, adjusting font sizes of Category aswell as all other menu items would be great.

    Can you help me with that?

    #1121576

    Hi,
    Thanks for your response.
    Yes, I did toggle and view in both CSS file merging and compression states (enabled and disabled; now enabled) even refreshing server cache. I adjusted font size down to 10px for the main menu and padding to 7px between each item. Still… it overlaps with the logo (WELS lettering) now at the E instead of the W. I’d like no overlap with the logo. What adjustments can yet be made to accomplish this?

    Kind regards,
    j

    #1121406

    Hi,

    Thank you for the update

    Did you toggle the Performance > File Compression settings after adding the code? Did the adjustment take effect? The font size of the menu items should be smaller and the space between them narrower.

    Best regards,
    Ismael

    #1121208

    Hey guys,

    in which position should I implement the piece of code to display the date?

    blog.php

    <?php
    /**
     * Blog Posts
     * 
     * Displays Posts from your Blog
     */
    if ( ! defined( 'ABSPATH' ) ) {  exit;  }    // Exit if accessed directly
    
    if ( ! class_exists( 'avia_sc_blog' ) )
    {
    	class avia_sc_blog extends aviaShortcodeTemplate
    	{
    			/**
    			 * Create the config array for the shortcode button
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['self_closing']	=	'yes';
    				
    				$this->config['name']		= __('Blog Posts', 'avia_framework' );
    				$this->config['tab']		= __('Content Elements', 'avia_framework' );
    				$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-blog.png";
    				$this->config['order']		= 40;
    				$this->config['target']		= 'avia-target-insert';
    				$this->config['shortcode'] 	= 'av_blog';
    				$this->config['tooltip'] 	= __('Displays Posts from your Blog', 'avia_framework' );
    				$this->config['preview'] 	= false;
    				$this->config['disabling_allowed'] = "manually";
    				$this->config['disabled']	= array(
    												'condition'	=> ( avia_get_option( 'disable_blog' ) == 'disable_blog' ), 
    												'text'		=> __( 'This element is disabled in your theme options. You can enable it in Enfold &raquo; Performance', 'avia_framework' )
    												);
    				
    			}
    			
    			function extra_assets()
    			{
    				//load css
    				wp_enqueue_style( 'avia-module-blog' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/blog/blog.css' , array('avia-layout'), false );
    				wp_enqueue_style( 'avia-module-postslider' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/postslider/postslider.css' , array('avia-layout'), false );
    			}
    			
    			
    			/**
    			 * 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()
    			{
    				$this->elements = array(
    					
    					array(
    							"type" 	=> "tab_container", 'nodescription' => true
    						),
    						
    					array(
    							"type" 	=> "tab",
    							"name"  => __("Content" , 'avia_framework'),
    							'nodescription' => true
    						),
    					
                        array(	'name' 		=> __( 'Do you want to display blog posts?', 'avia_framework' ),
    							'desc' 		=> __( 'Do you want to display blog posts or entries from a custom taxonomy?', 'avia_framework' ),
    							'id' 		=> 'blog_type',
    							'type' 		=> 'select',
    							'std'		=> 'posts',
    							'subtype'	=> array( 
    												__( 'Display blog posts', 'avia_framework' )						=> 'posts',
    												__( 'Display entries from a custom taxonomy', 'avia_framework' )	=> 'taxonomy')
    											),
    											
    											
    
    					array(	"name" 		=> __("Which categories should be used for the blog?", 'avia_framework' ),
    							"desc" 		=> __("You can select multiple categories here. The Page will then show posts from only those categories.", 'avia_framework' ),
    				            "id" 		=> "categories",
    				            "type" 		=> "select",
    	        				"multiple"	=> 6,
                                "required" 	=> array('blog_type', 'equals', 'posts'),
    				            "subtype" 	=> "cat"),
    
                        array(
                            "name" 	=> __("Which Entries?", 'avia_framework' ),
                            "desc" 	=> __("Select which entries should be displayed by selecting a taxonomy", 'avia_framework' ),
                            "id" 	=> "link",
                            "fetchTMPL"	=> true,
                            "type" 	=> "linkpicker",
                            "subtype"  => array( __('Display Entries from:',  'avia_framework' )=>'taxonomy'),
                            "multiple"	=> 6,
                            "required" 	=> array('blog_type', 'equals', 'taxonomy'),
                            "std" 	=> "category"
                        ),
    					
    					array(	
    						'type'			=> 'template',
    						'template_id' 	=> 'date_query',
    					),
    					
    					array(
    							"name" 	=> __("Blog Style", 'avia_framework' ),
    							"desc" 	=> __("Choose the default blog layout here.", 'avia_framework' ),
    							"id" 	=> "blog_style",
    							"type" 	=> "select",
    							"std" 	=> "single-big",
    							"no_first"=>true,
    							"subtype" => array( __('Multi Author Blog (displays Gravatar of the article author beside the entry and feature images above)', 'avia_framework') =>'multi-big',
    												__('Single Author, small preview Pic (no author picture is displayed, feature image is small)', 'avia_framework') =>'single-small',
    												__('Single Author, big preview Pic (no author picture is displayed, feature image is big)', 'avia_framework') =>'single-big',
    												__('Grid Layout', 'avia_framework') =>'blog-grid',
                                                    __('List Layout - Simple (Title and meta information only)', 'avia_framework' ) =>'bloglist-simple',
                                                    __('List Layout - Compact (Title and icon only)', 'avia_framework' ) =>'bloglist-compact',
                                                    __('List Layout - Excerpt (Title, meta information and excerpt only)', 'avia_framework' ) =>'bloglist-excerpt',
    
    												/* 'no sidebar'=>'fullsize' */
    										)),
    
                        array(
                            "name" 	=> __("Blog List Width", 'avia_framework' ),
                            "desc" 	=> __("Define the width of the list", 'avia_framework' ),
                            "id" 	=> "bloglist_width",
                            "type" 	=> "select",
                            "std" 	=> "",
                            "required" 	=> array('blog_style', 'contains', 'bloglist'),
                            "subtype" =>   array(
                                __('Auto',  'avia_framework' ) =>'',
                                __('Force Fullwidth',  'avia_framework' ) =>'force_fullwidth'
                                )),
    
                        array(
    							"name" 	=> __("Blog Grid Columns", 'avia_framework' ),
    							"desc" 	=> __("How many columns do you want to display?", 'avia_framework' ),
    							"id" 	=> "columns",
    							"type" 	=> "select",
    							"std" 	=> "3",
    							"required" 	=> array('blog_style', 'equals', 'blog-grid'),
    							"subtype" => AviaHtmlHelper::number_array(1,5,1)),
    
    					array(
    							"name" 	=> __("Define Blog Grid layout", 'avia_framework' ),
    							"desc" 	=> __("Do you want to display a read more link?", 'avia_framework' ),
    							"id" 	=> "contents",
    							"type" 	=> "select",
    							"std" 	=> "excerpt",
    							"required" 	=> array('blog_style', 'equals', 'blog-grid'),
    							"subtype" =>   array(
                                        __('Title and Excerpt',  'avia_framework' ) =>'excerpt',
                                        __('Title and Excerpt + Read More Link',  'avia_framework' ) =>'excerpt_read_more',
                                        __('Only Title',  'avia_framework' ) =>'title',
                                        __('Only Title + Read More Link',  'avia_framework' ) =>'title_read_more',
                                        __('Only excerpt',  'avia_framework' ) =>'only_excerpt',
                                        __('Only excerpt + Read More Link',  'avia_framework' ) =>'only_excerpt_read_more',
                                        __('No Title and no excerpt',  'avia_framework' ) =>'no')
                                ),
    
    					array(
    							"name" 	=> __("Blog Content length", 'avia_framework' ),
    							"desc" 	=> __("Should the full entry be displayed or just a small excerpt?", 'avia_framework' ),
    							"id" 	=> "content_length",
    							"type" 	=> "select",
    							"std" 	=> "content",
    							"required" 	=> array('blog_style', 'doesnt_contain', 'blog'),
    							"subtype" => array(
    								__('Full Content',  'avia_framework' ) =>'content',
    								__('Excerpt',  'avia_framework' ) =>'excerpt',
                                    __('Excerpt With Read More Link',  'avia_framework' ) =>'excerpt_read_more')),
    
    					array(
    							"name" 	=> __("Preview Image Size", 'avia_framework' ),
    							"desc" 	=> __("Set the image size of the preview images", 'avia_framework' ),
    							"id" 	=> "preview_mode",
                                "required" 	=> array('blog_style', 'doesnt_contain', 'bloglist'),
    							"type" 	=> "select",
    							"std" 	=> "auto",
    							"subtype" => array(__('Set the preview image size automatically based on column or layout width','avia_framework' ) =>'auto',__('Choose the preview image size manually (select thumbnail size)','avia_framework' ) =>'custom')),
    
    					array(
    							"name" 	=> __("Select custom preview image size", 'avia_framework' ),
    							"desc" 	=> __("Choose image size for Preview Image", 'avia_framework' ),
    							"id" 	=> "image_size",
    							"type" 	=> "select",
    							"required" 	=> array('preview_mode','equals','custom'),
    							"std" 	=> "portfolio",
    							"subtype" =>  AviaHelper::get_registered_image_sizes(array('logo'))
    							),
    
    					array(
    							"name" 	=> __("Post Number", 'avia_framework' ),
    							"desc" 	=> __("How many items should be displayed per page?", 'avia_framework' ),
    							"id" 	=> "items",
    							"type" 	=> "select",
    							"std" 	=> "3",
    							"subtype" => AviaHtmlHelper::number_array(1,100,1, array('All'=>'-1'))),
    
                        array(
                            "name" 	=> __("Offset Number", 'avia_framework' ),
                            "desc" 	=> __("The offset determines where the query begins pulling posts. Useful if you want to remove a certain number of posts because you already query them with another blog or magazine element.", 'avia_framework' ),
                            "id" 	=> "offset",
                            "type" 	=> "select",
                            "std" 	=> "0",
                            "subtype" => AviaHtmlHelper::number_array(1,100,1, array(__('Deactivate offset','avia_framework')=>'0', __('Do not allow duplicate posts on the entire page (set offset automatically)', 'avia_framework' ) =>'no_duplicates'))),
    
    					array(
    							"name" 	=> __("Pagination", 'avia_framework' ),
    							"desc" 	=> __("Should a pagination be displayed? Pagination might not work as expected when there is more than one blog posts element on a page, a post or on the blog page.", 'avia_framework' ),
    							"id" 	=> "paginate",
    							"type" 	=> "select",
    							"std" 	=> "yes",
    							"subtype" => array(
    								__('yes',  'avia_framework' ) =>'yes',
    								__('no',  'avia_framework' ) =>'no')),
    								
    								
    					array(
    							"name" 	=> __("Conditional display", 'avia_framework' ),
    							"desc" 	=> __("When should the element be displayed?", 'avia_framework' ),
    							"id" 	=> "conditional",
    							"type" 	=> "select",
    							"std" 	=> "",
    							"subtype" => array(
    								__('Always display the element',  'avia_framework' ) =>'',
    								__('Remove element if the user navigated away from page 1 to page 2,3,4 etc ',  'avia_framework' ) =>'is_subpage')),
    					
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    						
    						
    								array(
    									"type" 	=> "tab",
    									"name"	=> __("Screen Options",'avia_framework' ),
    									'nodescription' => true
    								),
    								
    								
    								array(
    								"name" 	=> __("Element Visibility",'avia_framework' ),
    								"desc" 	=> __("Set the visibility for this element, based on the device screensize.", 'avia_framework' ),
    								"type" 	=> "heading",
    								"description_class" => "av-builder-note av-neutral",
    								),
    							
    								array(	
    										"desc" 	=> __("Hide on large screens (wider than 990px - eg: Desktop)", 'avia_framework'),
    										"id" 	=> "av-desktop-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    								
    								array(	
    									
    										"desc" 	=> __("Hide on medium sized screens (between 768px and 989px - eg: Tablet Landscape)", 'avia_framework'),
    										"id" 	=> "av-medium-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    										
    								array(	
    									
    										"desc" 	=> __("Hide on small screens (between 480px and 767px - eg: Tablet Portrait)", 'avia_framework'),
    										"id" 	=> "av-small-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    										
    								array(	
    									
    										"desc" 	=> __("Hide on very small screens (smaller than 479px - eg: Smartphone Portrait)", 'avia_framework'),
    										"id" 	=> "av-mini-hide",
    										"std" 	=> "",
    										"container_class" => 'av-multi-checkbox',
    										"type" 	=> "checkbox"),
    			
    								
    							array(
    									"type" 	=> "close_div",
    									'nodescription' => true
    								),	
    								
    								
    						
    						
    					array(
    						"type" 	=> "close_div",
    						'nodescription' => true
    					),
    					
    					
    				);
    				
    				
    				
    
    				if(current_theme_supports('add_avia_builder_post_type_option'))
                    {
                        $element = array(
                            "name" 	=> __("Select Post Type", 'avia_framework' ),
                            "desc" 	=> __("Select which post types should be used. Note that your taxonomy will be ignored if you do not select an assign post type.
                                          If yo don't select post type all registered post types will be used", 'avia_framework' ),
                            "id" 	=> "post_type",
                            "type" 	=> "select",
                            "required" 	=> array('blog_type', 'equals', 'taxonomy'),
                            "multiple"	=> 6,
                            "std" 	=> "",
                            "subtype" => AviaHtmlHelper::get_registered_post_type_array()
                        );
    
                        array_splice($this->elements, 4, 0, array($element));
                    }
    
    			}
    
    			/**
    			 * 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 src='".$this->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 = "")
    			{
    				global $avia_config, $more;
    				
    				$screen_sizes = AviaHelper::av_mobile_sizes($atts);
    				extract($screen_sizes); //return $av_font_classes, $av_title_font_classes and $av_display_classes 
    				
    				if(empty($atts['categories'])) $atts['categories'] = "";
                    if(isset($atts['link']) && isset($atts['blog_type']) && $atts['blog_type'] == 'taxonomy')
                    {
                        $atts['link'] = explode(',', $atts['link'], 2 );
                        $atts['taxonomy'] = $atts['link'][0];
    
                        if(!empty($atts['link'][1]))
                        {
                            $atts['categories'] = $atts['link'][1];
                        }
                        else if(!empty($atts['taxonomy']))
    					{
    						$term_args = array( 
    										'taxonomy'		=> $atts['taxonomy'],
    										'hide_empty'	=> true
    									);
    						/**
    						 * To display private posts you need to set 'hide_empty' to false, 
    						 * otherwise a category with ONLY private posts will not be returned !!
    						 * 
    						 * You also need to add post_status "private" to the query params of filter avia_post_slide_query.
    						 * 
    						 * @since 4.4.2
    						 * @added_by Günter
    						 * @param array $term_args 
    						 * @param array $atts 
    						 * @param boolean $ajax
    						 * @return array
    						 */
    						$term_args = apply_filters( 'avf_av_blog_term_args', $term_args, $atts, $content );						
    
    						$taxonomy_terms_obj = AviaHelper::get_terms( $term_args );
    						
                            foreach ($taxonomy_terms_obj as $taxonomy_term)
                            {
                                $atts['categories'] .= $taxonomy_term->term_id . ',';
                            }
                        }
                    }
    
    				$atts = shortcode_atts( array(
    											'blog_style'		=> '',
    											'bloglist_width'	=> '',
    											'columns'			=> 3,
    											'blog_type'			=> 'posts',
    											'items'				=> '16',
    											'paginate'			=> 'yes',
    											'categories'		=> '',
    											'preview_mode'		=> 'auto',
    											'image_size'		=> 'portfolio',
    											'taxonomy'			=> 'category',
    											'post_type'			=> get_post_types(),
    											'contents'			=> 'excerpt',
    											'content_length'	=> 'content',
    											'offset'			=> '0',
    											'conditional'		=> '',
    											'date_filter'		=> '',
    											'date_filter_start'	=> '',
    											'date_filter_end'	=> '',
    											'date_filter_format'	=> 'mm / dd / yy'
    										), $atts, $this->config['shortcode'] );
    				
    				$page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' );
    				if( ! $page ) 
    				{
    					$page = 1;
    				}
    				
    				/**
    				 * Skip blog queries, if element will not be displayed
    				 */
    				if( $atts['conditional'] == 'is_subpage' && $page != 1 ) 
    				{
    					return '';
    				}
    				
    				if( $atts['blog_style'] == 'blog-grid' )
    				{
    					$atts['class'] = $meta['el_class'];
    					$atts['type']  = 'grid';
    					$atts = array_merge($atts, $screen_sizes);
    					
    					/**
    					 * @since 4.5.5
    					 * @return array
    					 */
    					$atts = apply_filters( 'avf_post_slider_args', $atts, $this->config['shortcode'], $this );
    					
    					//using the post slider with inactive js will result in displaying a nice post grid
    					$slider = new avia_post_slider( $atts );
    					
    					$old_page = null;
    					$is_single = is_single();
    					
    					if( 'yes' == $atts['paginate'] )
    					{
    						if( $is_single && isset( $_REQUEST['av_sc_blog_page'] ) && is_numeric( $_REQUEST['av_sc_blog_page'] ) )
    						{
    							$old_page = get_query_var( 'paged' );
    							set_query_var( 'paged', $_REQUEST['av_sc_blog_page'] );
    						}
    					}
    					
    					$slider->query_entries();
    					
    					if( 'yes' == $atts['paginate'] && $is_single )
    					{
    						add_filter( 'avf_pagination_link_method', array( $this, 'handler_pagination_link_method'), 10, 3 );
    					}
    					
    					$html = $slider->html();
    					
    					if( 'yes' == $atts['paginate'] && $is_single )
    					{
    						remove_filter( 'avf_pagination_link_method', array( $this, 'handler_pagination_link_method'), 10 );
    					}
    					
    					if( ! is_null( $old_page ) )
    					{
    						if( $old_page != 0 )
    						{
    							set_query_var( 'paged', $old_page );
    						}
    						else
    						{
    							remove_query_arg( 'paged' );
    						}
    					}
    					
    					return $html;
    				}
    				
    				$old_page = null;
    				$is_single = is_single();
    				
    				if( 'yes' == $atts['paginate'] )
    				{
    					if( $is_single && isset( $_REQUEST['av_sc_blog_page'] ) && is_numeric( $_REQUEST['av_sc_blog_page'] ) )
    					{
    						$old_page = get_query_var( 'paged' );
    						set_query_var( 'paged', $_REQUEST['av_sc_blog_page'] );
    					}
    				}
    
    				$this->query_entries( $atts );
    				
    				if( 'yes' == $atts['paginate'] && $is_single )
    				{
    					add_filter( 'avf_pagination_link_method', array( $this, 'handler_pagination_link_method'), 10, 3 );
    				}
    					
    
    				$avia_config['blog_style'] = $atts['blog_style'];
    				$avia_config['preview_mode'] = $atts['preview_mode'];
    				$avia_config['image_size'] = $atts['image_size'];
    				$avia_config['blog_content'] = $atts['content_length'];
    				$avia_config['remove_pagination'] = $atts['paginate'] === "yes" ? false :true;
    				
    				/**
    				 * Force supress of pagination if element will be hidden on foillowing pages
    				 */
    				if( $atts['conditional'] == 'is_subpage' && $page == 1 )
    				{
    					$avia_config['remove_pagination'] = true;
    				}
    
    				$more = 0;
    				ob_start(); //start buffering the output instead of echoing it
    				get_template_part( 'includes/loop', 'index' );
    				$output = ob_get_clean();
    				wp_reset_query();
    				
    				if( 'yes' == $atts['paginate'] && $is_single )
    				{
    					remove_filter( 'avf_pagination_link_method', array( $this, 'handler_pagination_link_method'), 10 );
    				}
    
    				if( ! is_null( $old_page ) )
    				{
    					if( $old_page != 0 )
    					{
    						set_query_var( 'paged', $old_page );
    					}
    					else
    					{
    						remove_query_arg( 'paged' );
    					}
    				}
    				
    				avia_set_layout_array();
    
    				if($output)
    				{
    					$extraclass = function_exists('avia_blog_class_string') ? avia_blog_class_string() : "";
    					$extraclass .= $atts['bloglist_width'] == 'force_fullwidth' ? ' av_force_fullwidth' : "";
                        $markup = avia_markup_helper(array('context' => 'blog','echo'=>false, 'custom_markup'=>$meta['custom_markup']));
    					$output = "<div class='av-alb-blogposts template-blog {$extraclass} {$av_display_classes}' {$markup}>{$output}</div>";
    				}
    
    				return $output;
    			}
    
    			/**
    			 * 
    			 * @since < 4.0
    			 * @param array $params
    			 */
    			protected function query_entries( array $params )
    			{
    				global $avia_config;
    				
    				$query = array();
    
    				if( ! empty($params['categories']) && is_string($params['categories'] ) )
    				{
    					//get the categories
    					$terms 	= explode( ',', $params['categories'] );
    				}
    
    				$page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' );
    				if(!$page || $params['paginate'] == 'no') $page = 1;
    
                    if($params['offset'] == 'no_duplicates')
                    {
                        $params['offset'] = 0;
                        $no_duplicates = true;
                    }
    
                    if(empty($params['blog_type']) || $params['blog_type'] == 'posts') $params['post_type'] = 'post';
                    if(empty($params['post_type'])) $params['post_type'] = get_post_types();
                    if(is_string($params['post_type'])) $params['post_type'] = explode(',', $params['post_type']);
    				
    				//wordpress 4.4 offset fix
    				if( $params['offset'] == 0 )
    				{
    					$params['offset'] = false;
    				}
    				else
    				{	
    					//if the offset is set the paged param is ignored. therefore we need to factor in the page number
    					$params['offset'] = $params['offset'] + ( ($page -1 ) * $params['items']);
    				}
    				
    				$date_query = array();
    				if( 'date_filter' == $params['date_filter'] )
    				{
    					$date_query = AviaHelper::add_date_query( $date_query, $params['date_filter_start'], $params['date_filter_end'], $params['date_filter_format'] );
    				}
    				
    				//if we find categories perform complex query, otherwise simple one
    				if(isset($terms[0]) && !empty($terms[0]) && !is_null($terms[0]) && $terms[0] != "null" && !empty($params['taxonomy']))
    				{
    					$query = array(	
    								'paged'			=> $page,
    								'posts_per_page' => $params['items'],
    								'offset'		=> $params['offset'],
    								'post__not_in'	=> ( ! empty( $no_duplicates ) ) ? $avia_config['posts_on_current_page'] : array(),
    								'post_type'		=> $params['post_type'],
    								'date_query'	=> $date_query,
    								'tax_query'		=> array( 	
    													array( 	
    															'taxonomy' 	=> $params['taxonomy'],
    															'field' 	=> 'id',
    															'terms' 	=> $terms,
    															'operator' 	=> 'IN'
    														)
    													)
    								);
    				}
                    else
    				{
    					$query = array(	
    								'paged'				=> $page,
    								'posts_per_page'	=> $params['items'],
    								'offset'			=> $params['offset'],
    								'post__not_in'		=> ( ! empty( $no_duplicates ) ) ? $avia_config['posts_on_current_page'] : array(),
    								'post_type'			=> $params['post_type'],
    								'date_query'		=> $date_query
    								);
    				}
    
    				/**
    				 * 
    				 * @since < 4.0
    				 * @param array $query
    				 * @param array $params
    				 * @return array
    				 */
    				$query = apply_filters( 'avia_blog_post_query', $query, $params );
    
    				$results = query_posts( $query );
    
                    // store the queried post ids in
                    if( have_posts() )
                    {
                        while( have_posts() )
                        {
                            the_post();
                            $avia_config['posts_on_current_page'][] = get_the_ID();
                        }
                    }
    			}
    			
    			/**
    			 * Using this element not in a page ( = is_single() ) returns a wrong pagination
    			 * 
    			 * @since 4.5.6
    			 * @param string $method
    			 * @param type $pages
    			 * @param type $wrapper
    			 * @return string
    			 */
    			public function handler_pagination_link_method( $method, $pages, $wrapper )
    			{
    				if( is_single() || ( 'get_pagenum_link' == $method ) )
    				{
    					$method = 'avia_sc_blog::add_blog_pageing';
    				}
    				
    				return $method;
    			}
    			
    			/**
    			 * Called when this element not in a page ( = is_single() ). 
    			 * Add our custom page parameter.
    			 * 
    			 * @since 4.5.6
    			 * @param int $page
    			 * @return string
    			 */
    			static public function add_blog_pageing( $page )
    			{
    				$link = get_pagenum_link( 1 );
    				
    				if( $page != 1 )
    				{
    					$link = add_query_arg( array( 'av_sc_blog_page' => $page ), $link );
    				}
    				else
    				{
    					$link = remove_query_arg( 'av_sc_blog_page', $link );
    				}
    				
    				return $link;
    			}
    		
    	}
    	
    }
    
    #1121088

    Hey Julie,

    Thank you for using Enfold.

    Try to adjust the font size of the menu items and the padding between them.

    @media only screen and (max-width: 1300px) {
        #top #header .av-main-nav > li > a {
            font-size: 13px;
            padding: 0 10px;
        }
    }
    

    Best regards,
    Ismael

    #1121087

    Hey datadirt,

    Thank you for the update.

    That is cause by the hidden category container. Please remove the following css code or just disable the top margin.

    h3.slide-entry-title {
        margin-top -36px !important;
        font-size: 18px !important;
    }
    

    Then look for this one:

    .blog-categories {
        visibility: hidden;
    }

    Replace that code with this:

    .blog-categories {
        display: none !important;
    }

    Don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    #1120941

    Hi Ismael,

    So I changed the checkout to be the same as the cart with the following:
    /* adjust cart order table pricing to like checkout order table pricing */
    .wholesale_price_title, .wholesale_price_container ins {
    text-decoration: none;
    font-size:13px!important;
    line-height:24px;
    font-weight:normal!important;
    }
    #top del, #top ins {
    font-size: 13px!important;
    font-weight:normal!important;
    color: #000!important;
    }

    All is good now.
    Thank you so much for your great help!
    Lyse

    #1120838

    Hi,

    This should change the style of the wholesale price in the checkout page.

    .wholesale_price_title, .wholesale_price_container {
        text-decoration: none;
        font-size:15px;
        line-height:24px;
        font-weight:600;
        color :#a9905a;
    } 

    Unfortunately, we can’t style the text in the cart page and in the price total column because the regular price and the wholesale price is in the same container.

    Best regards,
    Ismael

    #1120740

    Hey marcoabis81,
    I took a look at your page and found the headings have the correct font sizes, they match your screenshot. Please try clearing your browser cache and check again.
    I also looked at the difference between H2 24px and H3 20px and find this is correct, please try making H3 smaller or H2 larger.

    Best regards,
    Mike

    #1120739

    Hi,
    When I looked at your Advanced Styling > Main Menu Links the font size of the menu was set to “default”
    I adjusted to 20px for demonstration and cleared your cache plugin, and then cleared my browser cache and the changes took effect.

    We have many tutorials and tips in our Enfold documentation

    Best regards,
    Mike

    #1120695
    marcoabis81
    Participant

    Hi,
    I set a custom font size for H1 H2 H3 H4 but from the editor I see different values.

    See my custom font sizes: https://www.screencast.com/t/LnckBxbO
    But on article standard editor I see:

  • H1 24 instead of custom 28px
  • H2 18 instead of custom 24px
  • H3 14 instead of custom 20px
  • Then see the page where H4 or H3 look almost identical or bigger than H2. https://www.ninayudagratuita.co.uk/pre-settled-status-settled-status

    Can you help me to fix this? and how to refresh all contest as per custom font size?

    Thanks

#1120613

Hey Thomas,

Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css


#commentform label {
    font-size: 16px;
}

If you need further assistance please let us know.

Best regards,
Victoria

#1120578

Hi,
the labels in the comment section for “name”, “email” and “website” are pretty small in font size.
How can I make them bigger?
I’ve provided a link to my website and a screenshot below.
Cheers,
Tom

#1120170

Hey WolfgangEmmer,

Thank you for using Enfold.

Try to adjust the line-height property.

#top h1 a, #top h2 a {
    font-size: 24px; !important;
    line-height: 1.5em;
}

Wrap it inside a css media query if you want to specifically apply it to mobile devices or certain screen size.

Best regards,
Ismael

#1120163

Hey!

. I’ve already tried to remove that line of code all together

The markup in that example is actually correct but some of the tags are unnecessary. For example, there are multiple span stags with different style attribute and there are also empty ones. You can restructure that markup like this.


<p style="text-align: center; color: #f05a1a; font-size: large;"><strong>I AM THE ONLY INSPECTOR IN LOUISVILLE KY THAT LIMITS THEIR WORKLOAD TO ONE INSPECTION A DAY.  THIS ALLOWS ME TO TAKE THE NECESSARY TIME NEEDED TO GIVE YOU A HOME INSPECTION THAT IS SECOND TO NONE.</strong></p>
.

And relying on inline styling is not recommended because it’s a hassle to maintain.

understand, but can anyone explain how ‘excessive’ markups

If you forget to close even one of those tags, the content of the advance layout builder will break. And that’s probably what is happening in that page right now. I tried to check every elements in the page, but I can’t really see what’s missing because of the nested tags.

Best regards,
Ismael

#1120140

Hi,

I can’t seem to restore the page using the revisions. Did you optimize the database recently? It must have deleted the existing revisions. And I also forgot to save the page as template, so I couldn’t go back to the previous layout.

Have you tried to re-create that page from scratch? It might be necessary because there are excessive use of html in that page like nested em and strong tags, which is somewhat repetitive. There are also multiple nested span tags with different style attributes, which could have been combined into one. I am referring to the following markup for example. There are numerous instance of these all over the page.


<p style="text-align: center;"><strong><span style="color: #f05a1a;"><span style="font-size: large;">I AM THE ONLY INSPECTOR IN LOUISVILLE KY THAT LIMITS THEIR WORKLOAD TO ONE INSPECTION A DAY.  THIS ALLOWS ME TO TAKE THE NECESSARY TIME NEEDED TO GIVE YOU A HOME INSPECTION THAT IS SECOND TO NONE.</span></span><span style="font-size: large;">  </span></strong></p>

You should consider recreating that page from scratch and try to structure the page without using unnecessary nested tags.

Best regards,
Ismael

#1120084

Thank you very much!
One more question: In “Advanced Styling” I define an other header font size and colour for the “Main Menu Links”. Why is this not working?
Best regards!

#1120059

Hi Havi,

You can override it with pixels values as well, you might have to use !important for it apply like you mentioned. This class is not default to the theme though: .av-small-font-size-27. Is that a custom class of yours? If so then please check that it exists on your dev site as well.

Best regards,
Rikard

#1120015

Hey Sascha,

Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css


.html_elegant-blog .more-link {
    border-width: 2px;
    font-size: 13px;
    font-weight: bold;
}

If you need further assistance please let us know.

Best regards,
Victoria

#1119927

I edited the value to 3em and it changes all of the headings throughout the whole site and not in a good way.

But the CSS code on the Live site does not use em but:

@media only screen and (max-width: 767px) and (min-width: 480px)
.responsive #top #wrap_all .av-small-font-size-27 {
font-size: 27px !important;
}

Maybe the custom CSS you mark as !important lost that and does not get to override the .8em code.

Hope this helps fins the solution.

Havi

#1119918

Hi,

Thanks for that, this is the CSS applying to those headers:

@media only screen and (max-width: 767px) {
#top #wrap_all .av-inherit-size .av-special-heading-tag {
    font-size: 0.8em;
}
}

Could you try overriding that CSS with a higher value to see if that helps?

Best regards,
Rikard

#1119847
WolfgangEmmer
Participant

Hello,

I changed the font size of one specific element (Blog Posts / Beiträge) adding a custom css class. The font size is good, but the space between the lines (on mobiles not): https://www.dropbox.com/s/e6idlnmolrzgph6/Image-1.jpg?dl=0

—-
.Wissenselement
#top h1 a, #top h2 a {
font-size: 24px; !important;
}
—–

Can You please help?

Best Regards
Wolfgang

#1119755
IngridSpielman
Participant

HI,
After importing the Visual Artist Demo everything displays correctly initially.
When I try to edit any text boxes including the testimonials box various errors occur.

For example, There are two text boxes which say “Click here to add your own text”.
When I click on either of these to add my own text in the popup, the Element Preview says

“It seems you are currently adding some HTML markup or other special characters. Once all HTML tags are closed the preview will be available again. If this message persists please check your input for special characters and try to remove them.”

The content window contains ALL the following text. It is tricky to delete it, but I have managed to, however, it comes back after saving and viewing the changes.

<p><p><p>[av_section min_height='100' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#6ca9d0' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='' id='' color='main_color' custom_bg='' src='https://byates.com/wp-content/uploads/2015/07/sketch1a-1.jpg' attachment='212' attachment_size='full' attach='fixed' position='center center' repeat='contain' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'][/av_section][av_section min_height='100' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='border-extra-diagonal-inverse' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='#6ca9d0' id='' color='main_color' custom_bg='#6ca9d0' src='https://byates.com/wp-content/uploads/2015/07/sketch1b-1.jpg' attachment='213' attachment_size='full' attach='fixed' position='center center' repeat='contain' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'][/av_section][av_section min_height='100' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#dd71ae' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='' id='' color='main_color' custom_bg='' src='https://byates.com/wp-content/uploads/2015/07/sketch2a-1.jpg' attachment='214' attachment_size='full' attach='fixed' position='center center' repeat='contain' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'][/av_section][av_section min_height='100' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='border-extra-diagonal-inverse' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='#dd71ae' id='' color='main_color' custom_bg='#dd71ae' src='https://byates.com/wp-content/uploads/2015/07/sketch2b-1.jpg' attachment='215' attachment_size='full' attach='fixed' position='center center' repeat='contain' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'][/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#7bc6c7' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='' id='portfolio' 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_element_hidden_in_editor='0'][av_one_full first 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='bottom-to-top'][av_heading tag='h1' padding='20' heading='Do you enjoy my work? here are some other pieces I recently made' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading][/av_one_full][av_one_half first 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='bottom-to-top'][av_textblock size='' font_color='' color='']<br />Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.<br />[/av_textblock][/av_one_half][av_one_half 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='bottom-to-top'][av_textblock size='' font_color='' color='']<br />Donec pede justo, fringilla 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.<br />[/av_textblock][/av_one_half][av_hr class='invisible' 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_masonry_gallery ids='218,219,220,221,222,223' items='6' columns='6' paginate='none' size='fixed' orientation='' gap='large' overlay_fx='active' container_links='active' id='' caption_elements='none' caption_styling='' caption_display='on-hover' color='' custom_bg='' av-medium-columns='' av-small-columns='' av-mini-columns=''][av_hr class='invisible' height='100' 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' admin_preview_bg=''][/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='border-extra-diagonal-inverse' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='#7bc6c7' id='about' color='main_color' custom_bg='#7bc6c7' 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_element_hidden_in_editor='0'][av_one_full first 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='bottom-to-top'][av_heading tag='h1' padding='20' heading='A little bit about me...' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading][/av_one_full][av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-middle' 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='bottom-to-top' mobile_breaking='' mobile_display=''][av_image src='https://byates.com/wp-content/uploads/2015/07/desat-girl-m5-1.jpg' attachment='216' attachment_size='full' align='center' styling='circle' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/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='bottom-to-top'][av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg='rgb(34, 34, 34)']<br />Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis.Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.<br />[/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='bottom-to-top'][av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg='rgb(34, 34, 34)']<br />Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdteger tincidunt.<br />[/av_textblock][/av_one_third][av_hr class='invisible' height='100' 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' admin_preview_bg=''][/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-diagonal' bottom_border_diagonal_color='#acc7a7' bottom_border_diagonal_direction='' bottom_border_style='' scroll_down='aviaTBscroll_down' custom_arrow_bg='' 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_element_hidden_in_editor='0']<br />[av_heading tag='h1' padding='20' heading='What my customers say about me' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading][av_testimonials style='slider_large' columns='2' interval='5' font_color='' custom_title='' custom_content='']<br />[av_testimonial_single src='' name='Macky Mac' subtitle='' link='' linktext='']<br />Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.<br />[/av_testimonial_single]<br />[av_testimonial_single src='' name='Franco Moriti' subtitle='' link='' linktext='']<br />Donec pede justo, fringilla 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.<br />[/av_testimonial_single]<br />[/av_testimonials][av_hr class='invisible' height='100' 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' admin_preview_bg='']<br />[/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='#7bc6c7' id='contact' color='main_color' custom_bg='#acc7a7' 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_element_hidden_in_editor='0']<br />[av_one_full first 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='bottom-to-top'][av_heading tag='h1' padding='20' heading='Get in touch' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading][/av_one_full][av_one_half first 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='bottom-to-top' mobile_breaking='' mobile_display=''][av_contact email='' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' form_align='' color='av-custom-form-color av-light-form' admin_preview_bg='rgb(34, 34, 34)']<br />[av_contact_field label='Name' type='text' check='is_empty' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]<br />[av_contact_field label='E-Mail' type='text' check='is_email' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]<br />[av_contact_field label='Message' type='textarea' check='is_empty' options='' multi_select='' av_contact_preselect='' width=''][/av_contact_field]<br />[/av_contact][/av_one_half][av_one_half 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='bottom-to-top'][av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg='rgb(34, 34, 34)']<br />Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.Donec pede justo, fringilla 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.<br />[/av_textblock][/av_one_half]<br />[/av_section]</p></p>

WolfgangEmmer
Participant

Hello, on my site kontento.de there is an issue on high resolution windows screens. The fonts (Headline / H3) seems to be broken / displayed wrong (letters are not well separated).

I changed the h3 (size, font), but nothing happens on the elements on my main page.

https://www.dropbox.com/s/0v21j21fgzi2r10/image001.png?dl=0

Ideas?

Thank You
Best
Wolfgang

  • This topic was modified 6 years, 8 months ago by WolfgangEmmer.
#1119635

Hi Phil,

You need to choose, either SEO tool will pick up the whole heading or change the font size. It has to be a separate element.

Best regards,
Victoria

#1119589

In reply to: Back End White Screens

Sorry, perhaps I was not clear. The problem is not solved.

When I change the theme from Enfold to Twenty Nineteen, the back end works fine. However, when I change back to Enfold, the problems return.

I also noticed the following errors in Woocommerce/Status/Logs:

    2019-07-16T13:25:38+00:00 CRITICAL require_once(): Failed opening required ‘config-wpml/config.php’ (include_path=’.:/usr/lib/php7.2′) in /homepages/32/d788783783/htdocs/mysite/wp-content/themes/enfold/functions.php on line 29

    2019-07-16T13:26:08+00:00 CRITICAL require(): Failed opening required ‘php/inc-autoconfig.php’ (include_path=’.:/usr/lib/php7.2′) in /homepages/32/d788783783/htdocs/mysite/wp-content/themes/enfold/framework/avia_framework.php on line 39

    2019-07-16T13:27:09+00:00 CRITICAL require(): Failed opening required ‘/homepages/32/d788783783/htdocs/mysite/wp-content/themes/enfold/framework/php/avia_shortcodes/shortcodes.php’ (include_path=’.:/usr/lib/php7.2′) in /homepages/32/d788783783/htdocsmysite/wp-content/themes/enfold/framework/php/inc-autoconfig.php on line 177

    2019-07-16T13:29:09+00:00 CRITICAL require(): Failed opening required ‘/homepages/32/d788783783/htdocs/mysite/wp-content/themes/enfold/framework/php/avia_shortcodes/shortcodes.php’ (include_path=’.:/usr/lib/php7.2′) in /homepages/32/d788783783/htdocs/mysite/wp-content/themes/enfold/framework/php/inc-autoconfig.php on line 177

Finally, I am unable to automatically install any new plugins. The following message is thrown at the top of the “Add Plugins” page when I try to install a new plugin:

    Installation failed: <!DOCTYPE html> html, body, #partner, iframe { height:100%; width:100%; margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; } body { overflow:hidden; } <!– Following Meta-Tag fixes scaling-issues on mobile devices –> document.write( ” + ‘<\/script>’ );
  • This reply was modified 6 years, 8 months ago by deepbluec.
Viewing 30 results - 4,951 through 4,980 (of 18,734 total)