Forum Replies Created

Viewing 30 posts - 55,951 through 55,980 (of 67,216 total)
  • Author
    Posts
  • in reply to: Problem with Layer Slider #317831

    Hey connect4consulting!

    Thank you for using Enfold.

    I’m sorry but what do you mean by “built-in” styles? The layer slider seems to be working fine on the test page.

    Regards,
    Ismael

    in reply to: Customize Scroll Down Arrow #317830

    Hey AMseptemeber!

    Thank you for using Enfold.

    You can change the color and background with this on Quick CSS or custom.css:

    #top .scroll-down-link {
    background: red;
    color: blue;
    }

    Use css animations to apply a bouncing effect on the scroll down arrow. There’s a lot of good tutorials regarding that subject.

    Best regards,
    Ismael

    in reply to: Trouble with Easy Slider #317825

    Hi!

    The code worked. Please remove browser cache then reload the page a few times. Add this to move the logo downwards a bit:

    top: 5px;
    

    Regards,
    Ismael

    in reply to: Color Element #317824

    Hi!

    It doesn’t matter if it’s the first or last element on the page. The Color Section element will always be full width unless there are third party scripts or html codes that are messing up with the markup.

    Cheers!
    Ismael

    in reply to: Enfold > Font Weight #317822

    Hey!

    Please use this on Quick CSS or custom.css:

    #top .av-main-nav > li > a {
    font-weight: bold !important;
    }

    If that code doesn’t work alone, add this on functions.php:

    function add_opensans_script(){
    ?>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
    <?php
    }
    add_action('wp_head', 'add_opensans_script');
    

    Best regards,
    Ismael

    in reply to: Animations not working with WP 4 #317820

    Hey hansdamf!

    Thank you for using Enfold.

    There’s a script error coming from js > shortcodes.js file. Please get a fresh copy of the said file then override the old one. Did you add any modifications on the child theme?

    Regards,
    Ismael

    in reply to: Second-level nav/menu bar encroaches on full-width layerslider #317818

    Hey!

    I’m sorry but I can’t see the issue. Did you remove the sub menu? We need to see it in order to provide a fix. On what browser and OS are you testing this?

    Cheers!
    Ismael

    Hey rossboom22!

    Thank you for using Enfold.

    Did you add any full width slider on the page? Add this on functions.php:

    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['is_fullwidth'] = false;
    return $settings;
    }

    Please undo the changes on functions-enfold.php then add this code to filter the post navigation on the same category:

    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }

    Regards,
    Ismael

    in reply to: Admin problems – help needed urgently #317816

    Hi!

    The memory limit has been maxed out. Please increase the wordpress php memory limit to at least 128M. Refer to this link: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    Hey codecreative!

    Thank you for using Enfold.

    Please go to wp-content/uploads/dynamic_avia folder then delete the enfold_child.css file. Change any settings on the theme options then save changes to regenerate the file. See if that helps.

    Regards,
    Ismael

    in reply to: Shortcodes not working #317813

    Hey infigic!

    Thank you for using Enfold.

    Looks like you’re using Contact Form 7. Shortcodes won’t work inside the contact form 7 editor. Try using flex_columns container. Something like this:

    <div class="flex_column av_one_half first">
    CF7 Shorcode here 
    </div>
    
    <div class="flex_column av_one_half">
    CF7 Shorcode here 
    </div>

    Cheers!
    Ismael

    in reply to: Add a button the top nav menu #317812

    Hey!

    Please try to copy the code from here: http://pastebin.com/ndL11vbH

    Best regards,
    Ismael

    in reply to: Height of Slider #317810

    Hey virtualsa!

    Thank you for using Enfold.

    No, I’m sorry it’s not possible without modifying the theme files. Try to use the Layer Slider or Revolution Slider plugin which has their own parallax effect.

    Best regards,
    Ismael

    in reply to: Accordion Slider Customization #317808

    Hey annameis!

    Thank you for using Enfold.

    I’m sorry but this is not possible without major modifications. Please hire a freelance developer to integrate the Corona slider to Enfold. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Regards,
    Ismael

    in reply to: Accordion Toggle Colors #317807

    Hi!

    1.) Please use this for the + icon:

    .toggle_icon .vert_icon, .toggle_icon .hor_icon, span.toggle_icon {
    border-color: #666666;
    }

    2.) Use this for the active tab:

    .main_color .toggler, .main_color .toggler.activeTitle:hover {
    background: #2c5b9c !important;
    color: white !important;
    }

    Cheers!
    Ismael

    in reply to: WordPress SEO crash #317804

    Hey!

    @Ronan: Do you mind if we take a look at the current website? Have you tried adding this code on functions.php?

    add_action('init','avia_remove_yoast_filter');
    function avia_remove_yoast_filter()
    {
        remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1);
        remove_filter('wpseo_video_index_content','avia_wpseo_video_content_fix', 10, 2);
    }

    Best regards,
    Ismael

    in reply to: Blog image not pulling through #317279

    Hi!

    Thank you for the access.

    You didn’t set any featured images on the posts. I added a featured image on a post. Please check: http://www.ehlgroup.co.uk/news-2/

    Cheers!
    Ismael

    in reply to: Icons doesnt recognized anymore #317276

    Hi!

    Please reset the .htaccess file then refer to this link for a possible fix: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems

    It is better if you contact your host regarding this matter to avoid errors.

    Regards,
    Ismael

    in reply to: Caption Title below Easy Slider #317271

    Hi!

    Please provide a screenshot for the portfolio items. Are you using the masonry element?

    Cheers!
    Ismael

    in reply to: Masonry Portfolio #317269

    Hey!

    Honestly, we haven’t tested those plugins but if you’re going for the Social Sharing Toolkit, enable the shortcode then edit the config-templatebuilder > aviashortcodes > masonry_entries.php. Add the social shortcode somewhere on these line of codes starting from line 562:

    $items .=	"<figcaption class='av-inner-masonry-content site-background'><div class='av-inner-masonry-content-pos'><div class='avia-arrow'></div>".$text_before;
    					
    					if(strpos($this->atts['caption_elements'], 'title') !== false){
                            $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup']));
    						$items .=	"<h3 class='av-masonry-entry-title entry-title' {$markup}>{$the_title}</h3>";
    					}
    
    					if(strpos($this->atts['caption_elements'], 'excerpt') !== false && !empty($content)){
                            $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup']));
    						$items .=	"<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>";
    					}

    Best regards,
    Ismael

    in reply to: Use Icon Animation for Buttons #317265

    Hi!

    They are not buttons, you’re using an icon shortcode. They should have this animation by default. Please create a new thread if you’re having any issues with the icon element. I’ll close this thread.

    Best regards,
    Ismael

    in reply to: Enfold Showcase #317259

    Hey!

    Good job on the websites! Thank you for using Enfold. :)

    Best regards,
    Ismael

    in reply to: Switch Featured Image and Headline order #317258

    Hey!

    Please use this:

    header.entry-content-header {
    padding-left: 130px;
    }
    
    @media only screen and (max-width: 767px) {
    header.entry-content-header {
    padding-left: 0;
    }
    }
    

    Best regards,
    Ismael

    in reply to: Disappearing Sidebar #317257

    Hi kscott87!

    Thank you for using Enfold.

    Most of your pages are set to fullwidth. You can set the sidebar on Enfold > Sidebar Settings panel. Look for the Sidebar on Pages. You can individually set the sidebar by editing the page then look for the Layout box > Sidebar Setting.

    Regards,
    Ismael

    in reply to: Background on portfolio items and other questions #317255

    Hi!

    If you want a fixed socket, you can use this:

    footer#socket {
    position: fixed;
    bottom: 0;
    width: 100%;
    }

    I’m not sure what happen to the “photos-concerts” portfolio page but the background looks OK on “autres-photos”.

    Regards,
    Ismael

    in reply to: Page Organisation and display in footer #317253

    Hi generatrorassociates!

    Thank you for using Enfold.

    The theme doesn’t have a page management feature so you can use the search box to search for the page that you want to edit. If you want to control the pages on the footer, use the Custom Menu widget.

    Regards,
    Ismael

    in reply to: Second Footer #317247

    Hi!

    Edit footer.php, remove everything then replace it with this: http://pastebin.com/dFC3t4m7

    Edit functions.php, add this at the very bottom:

    $footer_columns = avia_get_option('footer_columns','5');
    
    for ($i = 1; $i <= $footer_columns; $i++)
    	{
    		register_sidebar(array(
    		'name' => 'Footer2 - column'.$i,
    		'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    		'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    		'before_title' => '<h3 class="widgettitle">', 
    		'after_title' => '</h3>', 
    		));
    	}

    Go to the widgets panel then add new widgets on the Footer2 columns.

    Best regards,
    Ismael

    Hey!

    Try adding this on Quick CSS or custom.css to remove the content padding:

    #optin-home .content {
    padding-top: 0;
    padding-bottom: 0;
    }

    Cheers!
    Ismael

    in reply to: Woo Commerce 2.2 Support and Theme Update Questions #317242

    Hey j1980mac!

    Thank you for using Enfold.

    We haven’t tested the latest update of WooCommerce yet but so far there are no reported issues about 2.2. If you want to update the theme, please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: alternate row colors in table #317241

    Hey!

    Add this at the bottom:

    .pricing-table-wrap:first-child li.avia-heading-row {
    background: #0066CC !important;
    }
    
    .pricing-table-wrap:nth-child(3) li.avia-heading-row {
    background: #99003D !important;
    }

    Cheers!
    Ismael

Viewing 30 posts - 55,951 through 55,980 (of 67,216 total)