Forum Replies Created

Viewing 30 posts - 59,821 through 59,850 (of 66,166 total)
  • Author
    Posts
  • in reply to: Header Social Icons #222189

    Hi!

    I’m not sure if I am following the thread correctly but I can see the social icons on the right side of the menu. This is what I see on my end:

    Best regards,
    Ismael

    Hi Geoffdoyle!

    You can add this on custom.css or Quick CSS to change the height of the Fullwidth Easy Slider to 400px:

    .avia-fullwidth-slider {
    height: 400px;
    }

    Regards,
    Ismael

    in reply to: Layerslider don't save #222181

    Hi!

    I’m really not sure why it is not saving. I tried it with different sliders. Can you please deactivate the WordPress SEO ? We’ll check it again after you deactivate the plugin.

    Best regards,
    Ismael

    in reply to: how can I customize the title/breadcrum area? #222177

    Hi nedimhazar!

    Please add this on functions.php:

    add_filter('avf_title_args', 'avf_change_breadcrumb', 10, 2);
    function avf_change_breadcrumb($args,$id) {
    	if($args['breadcrumb'] == true) {
    		$args['breadcrumb'] = false;
    		$args['title'] = '';
    		$args['html'] = "<div class='{class} title_container'><div class='container'>PLACE THE MENU HERE</div></div>";
    	}
    	
    	return $args; 	
    }

    Add the menu inside the container div.

    Best regards,
    Ismael

    in reply to: Reducing the margin size under the logo and menu header #222171

    Hey Animationink!

    You can add this on Quick CSS or custom.css to decrease the header height:

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 88px;
    line-height: 88px;
    }

    Please give us a link to the actual website so that we can inspect it.

    Cheers!
    Ismael

    in reply to: Please contribute and translate Enfold #222168

    Hey!


    @motylanogha
    : Thank you! :)

    Regards,
    Ismael

    in reply to: Updated LayerSlider #222164

    Hi!

    There is no official date for the layer slider upgrade yet but it should be release on future updates. You can disable the default layerslider plugin if you bought a license. Add this on functions.php:

    add_theme_support( ‘deactivate_layerslider’ );
    

    Install the Layer Slider as a stand alone plugin.

    Cheers!
    Ismael

    in reply to: Problem with Later Slider WP in Enfold theme #222162

    Hi ycsim4016!

    Please give us a link to the actual website. Another user reported this issue but sadly, we didn’t found a fix yet.

    Regards,
    Ismael

    in reply to: Layerslider Version 4.6.5 to 5.0 #222155

    Hey!

    You can disable the default layerslider plugin within the theme then install the LayerSlider as a standalone plugin. Edit functions.php, add this code:

    add_theme_support( 'deactivate_layerslider' );
    

    This will disable the default LayerSlider. Buy the premium LayerSlider plugin then install it.

    Best regards,
    Ismael

    in reply to: Height of FullScreenSlider, No scaling #222150

    Hey!

    Unfortunately, the color section can only support one background image at a time. Please hire a freelance developer to modify the theme for you. You can visit Werkpres for modifications.

    Best regards,
    Ismael

    in reply to: Nested columns? #222144

    Hey Rolf!

    You can insert a column layout shortcode within a Text Block inside a column layout. Generate the column layout shortcode using the shortcode wand.

    Cheers!
    Ismael

    in reply to: Bugy Blog Preview Comment Amount / Number #222142

    Hi!

    I checked all posts on the startpage but I don’t see any comments That is why they are set to “0”.

    Regards,
    Ismael

    in reply to: Animated elements in page for touch devices #222141

    Hey tecnavia!

    What is the device you’re using? Some devices don’t support CSS3 animations.

    Best regards,
    Ismael

    in reply to: IMAGES DON'T LOAD ON IPHONE OR IPAD #222137

    Hey!

    You don’t have the latest version of the theme. Please download version 2.4.5 then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Increase the wordpress php memory limit. Please refer to this link.

    Best regards,
    Ismael

    in reply to: Language selection with flags #222135

    Hi!

    Please add this on custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    #menu-language-selection li {
    width: 100px;
    background-position: 73px 0px;
    padding-top: 2px;
    }

    }

    Cheers!
    Ismael

    in reply to: increase social media icon sizes header #221593

    Hi ShortieD!

    You can add this on your custom.css or Quick CSS:

    #top .social_bookmarks li a {
    width: 50px;
    line-height: 32px;
    min-height: 50px;
    font-size: 30px;
    }
    
    #top .social_bookmarks li {
    height: 100%;
    width: 50px;
    }

    Cheers!
    Ismael

    in reply to: Customization of Grid Layout #221590

    Hi Yeas!

    You can edit config-templatebuilder > avia-shortcodes > postslider.php, look for this code to modify the look of the blog grid layout:

     $markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
    					$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
    					$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
    					$output .= "<div class='slide-content'>";
    
                        $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false));
                        $output .= '<header class="entry-content-header">';
                        $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
                        $output .= '</header>';
    
                        if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}
                        $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false));
    					$output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
    
                        $output .= "</div>";
                        $output .= '<footer class="entry-footer"></footer>';
    					$output .= "</article>";

    Or you can add something like this on Quick CSS or custom.css to align the grid image to the left:

    .slide-image {
    width: 30%;
    margin-right: 10px;
    float: left;
    }

    Regards,
    Ismael

    in reply to: Can't change font color in sections of main content. HELP! #221583

    Hi!

    Please give us a list of the elements or text that you’re trying to change. A screenshot will help.

    Cheers!
    Ismael

    in reply to: LayerSlider Bug – Bad Transitions and Cannot Disable #221582

    Hey!

    Please use this plugin, click the “Optimize” button to refresh the wp_layerslider table.

    http://wordpress.org/plugins/wp-clean-up/

    If it doesn’t work, edit your wp database using phpmyadmin then look for the “wp_layerslider’ table. Edit one of the slides, look for the 3d and 2d transition properties on the data column. It looks something like this:

    "properties":{"3d_transitions":"all","2d_transitions":"11,13,23","custom_3d_transitions":"","custom_2d_transitions"
    

    I got the data from my own layer slider and it has the 3d transitions set to “All” while the 2d transition have the 11,13 and 23 transition effects selected.

    Best regards,
    Ismael

    in reply to: Website logo to link to another url / Social icon size #221577

    Hey!

    Please use this on Quick CSS or custom.css:

    #top .social_bookmarks li {
    width: 45px;
    margin-left: 15px;
    padding-right: 15px;
    }
    
    #top .social_bookmarks {
    left: -15px;
    position: relative;
    }

    Cheers!
    Ismael

    in reply to: Spacing Between Logo/Nav area and Page Content on Homepage #221575

    Hey!

    What type of header do you have? Please check on Enfold > Header > Header Type. Please post the link of the actual website here.

    Best regards,
    Ismael

    in reply to: Odd spacing in IE8 above LayerSlider and Color Section #221564

    Hi!

    Please try this on Quick CSS or custom.css to target IE8:

    .content, .sidebar {
    padding-top: 10px\9;
    padding-bottom: 10px\9;
    }

    Install this plugin, see if it helps: http://wordpress.org/plugins/html5shiv/

    Regards,
    Ismael

    in reply to: Google Event Tracking #221562

    Hi frankster1234!

    Please refer to this link: https://kriesi.at/support/topic/google-adwords-tracking-after-form-has-been-submitted/

    You can use the Contact Form 7 plugin.

    Regards,
    Ismael

    in reply to: Can't change font color in sections of main content. HELP! #221561

    Hi simisola80!

    Can you please give us a link to the website? Point us to the elements that you want to change. Do you have a cache plugin? Please deactivate it when you’re making changes to the website.

    Regards,
    Ismael

    in reply to: Fonts loaded through the IconFont Manger are messing up ssl #221559

    Hey!

    Glad it works. :)

    Best regards,
    Ismael

    in reply to: Homepage displays multiple pages #221558

    Hey vadesign!

    Please give us a link to the page. DId you set the page as home page on Enfold > Frontpage Settings?

    Cheers!
    Ismael

    in reply to: Disqus Comments Padding Difference Page vs. Post #221556

    Hey!

    It does work on my end. Please place it at the very bottom. Remove browser cache then reload the page:

    .contenteditable #layout {
    padding-right: 50px !important;
    }

    Cheers!
    Ismael

    in reply to: Menu on mobile device #221555

    Hi!

    On what browser and OS are you testing this? I tried to click “Quickstep Incizo 5 in 1 Trim” which is a part of the mega menu and it takes me to that page without any issues.

    Best regards,
    Ismael

    in reply to: Website logo to link to another url / Social icon size #221553

    Hey oliviad!

    1.) Add this on functions.php:

    add_filter('avf_logo_link', 'avf_change_logo_link');
    
    function avf_change_logo_link($link) {
    	$link = "http://www.google.com";
    	return $link;
    }

    2.) Can you please give us a link to the actual website?

    Cheers!
    Ismael

    in reply to: Responsive Layout mit Boxed Style #221552

    Hey!

    You need to decrease the width of the “.responsive .container .nine.units” on css > grid.css. Look for instances of this selector then decrease the width to increase the width of the sidebar.

    Best regards,
    Ismael

Viewing 30 posts - 59,821 through 59,850 (of 66,166 total)