Forum Replies Created

Viewing 30 posts - 61,141 through 61,170 (of 67,534 total)
  • Author
    Posts
  • in reply to: Advanced Layout Editor is blank #222793

    Hi!

    Can you please give us a link to the website? Did you deactivate all active plugins?

    Cheers!
    Ismael

    in reply to: Customizing the comment section #222780

    Hi!

    You should use a child theme. Create an includes folder and place a comments.php file inside.

    Regards,
    Ismael

    in reply to: Icon list font settings changed after update #222778

    Hey David!

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

    .iconlist_content p {
    line-height: 30px;
    }
    
    .avia-icon-list .iconlist_title {
    margin-bottom: 10px;
    }

    The plugin Grid Products is messing up with theme’s layout.

    Regards,
    Ismael

    in reply to: Changing logo size #222774

    Hi Benjaminlivingthebrand

    What type of header do you have? Please give us a link to the actual website. We can change the height of the header and the size of the logo will resize in response.

    Best regards,
    Ismael

    in reply to: Question about new update 2.5 #222770

    Hey!


    @adrianwackernah
    : Thanks for the heads up.


    @kenwae
    : Looks like you really need to update the links on the slideshow.

    Best regards,
    Ismael

    in reply to: Remove featured image link inside post. #222769

    Hi gmarco!

    Please edit includes > loop-index.php, find this code on line 81:

    if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    

    Replace it with:

    if (!is_single()) {
                $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    			} else {
    			$slider = $slider;	
    			}

    Best regards,
    Ismael

    in reply to: enfold reach the limit of server's cpu and memory usage #222755

    Hey!

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

    Best regards,
    Ismael

    in reply to: Sidebar Menu #222736

    Hi!

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

    .avia_partner_widget a, .avia_partner_widget a:hover {
    width: 200px;
    height: 200px;
    margin-top: 10px;
    }

    Add the same widget on Sidebar Blog Pages widget area on Appearance > Widgets.

    Best regards,
    Ismael

    in reply to: Homepage broken all of a sudden!! #222735

    Hey!

    Please post the link of the website. Did you install any plugins? Please try to increase the php memory limit. Refer to this link.

    Best regards,
    Ismael

    in reply to: Update Enfold Theme #222732

    Hey PlanetServizi!

    You can override the theme files via FTP. Please watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: Modifying Home Page #222729

    Hi themeforesttony!

    You can simply modify the layout of a page with Advance Layout Builder. Please watch this video on how to use the Advance Layout Editor:

    Cheers!
    Ismael

    in reply to: icon box #222728

    Hey patriscia!

    1.) Change the color of the icon using this on Quick CSS:

    .main_color.iconbox_top .iconbox_icon {
    color: red;
    background: blue;
    }

    2.) Change the title using this:

    .iconbox .iconbox_content .iconbox_content_title {
    font-size: 13px;
    }

    Best regards,
    Ismael

    in reply to: compatibility issue #222667

    Hi fdgmdg!

    Please add this on Quick CSS or custom.css:

    .iconbox_content_container a img,  .iconbox_content_container img {
    width: auto;
    max-width: 100%;
    }

    Cheers!
    Ismael

    in reply to: Content Scheduler #222657

    Hi Gil413!

    Maybe these plugins will do:

    http://wordpress.org/plugins/content-scheduler/
    http://wordpress.org/plugins/automatic-post-scheduler/
    http://wordpress.org/plugins/schedule-posts-calendar/

    You can request the feature here. If there are sufficient request then Kriesi will likely to add it: https://kriesi.at/support/topic/enfold-feature-requests/

    Regards,
    Ismael

    in reply to: Testimonial Slider #222654

    Hi dennisoderwald!

    Thank you for noticing but I think it has been fixed on the latest update of Enfold. Please try to add this on custom.css or Quick CSS:

    .avia-testimonial-wrapper {
    display: table;
    margin: 30px 0;
    clear: both;
    }
    
    #top .avia-slider-testimonials.avia-testimonial-wrapper {
    min-height: initial;
    }

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #222646

    Hi!


    @gmarco
    : The spanish translation is already included on the latest version of the theme. Please check the lang folder then look for the es_Es mo and po files.

    @elmanisero; Thank you so much!

    Regards,
    Ismael

    in reply to: Question about new update 2.5 #222641

    Hi kenwae!

    Haven’t encountered any issues so far, we’ll let you know if we found any. You might want to update them slowly just to be sure.

    Cheers!
    Ismael

    in reply to: Background Color and Link Color of Main Navigation #222640

    Hi danieltjohnston!

    Please use this on Quick CSS or custom.css:

    #header_main_alternate {
    background: black;
    }
    
    .header_color .main_menu ul {
    background: black;
    color: white;
    }
    
    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Cheers!
    Ismael

    in reply to: Issues with titles #222637

    Hey topergarden!

    You can change the single post title using this on functions.php:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single())
    {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    }
    
    return $args;
    }

    Add this on Quick CSS to remove the breadcrumbs on single posts:

    .single .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Spacing issue in Chrome when using parallax/colorbox #222634

    Hey!

    Can you please post a screenshot of the issue? I checked the website and the spacing between the icons and the rock image is normal. You can decrease the padding of the content using this on Quick CSS:

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

    Best regards,
    Ismael

    in reply to: Page title navigation heading query. #222629

    Hey!

    Glad you figured it out. :)

    Regards,
    Ismael

    in reply to: Enfold Full-Width Masonry Gallery #222627

    Hey awsystems!

    Edit config-templatebuider > avia-shortcodes > masonry_entries.php, find this code on line 529:

    $items .= 	"<{$html_tags[0]} class='{$class_string}' $linktitle $markup>";
    

    Replace it with:

    $items .= 	"<{$html_tags[0]} target='_blank' class='{$class_string}' $linktitle $markup>";
    

    Best regards,
    Ismael

    in reply to: Styles not working #222619

    Hey gmarco!

    Do you have a cache plugin? Please disable the cache plugin while working with the theme.

    Cheers!
    Ismael

    in reply to: After updating, images in columns are no longer responsive? #222617

    Hi!

    Please use this on custom.css or Quick CSS to fix the one fourth column widgets:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .av_one_fourth.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_half {
    margin-left: 2%;
    clear: none;
    }
    
    .responsive .av_one_half.first + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_half {
    margin-top: 0;
    }
    
    .responsive .av_one_fourth.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth + .av_one_fourth {
    margin-left: 2%;
    width: 23.1%;
    }
    }

    Cheers!
    Ismael

    in reply to: Theme Updates #222614

    Hey!

    Please add this on functions.php to hide the Enfold Theme Options on the dashboard:

    function ava_remove_theme_options() {
    echo '<style type="text/css">#toplevel_page_avia{display: none;}</style>';
    }
    
    add_action('admin_head', 'ava_remove_theme_options');

    Cheers!
    Ismael

    in reply to: Cant edit code in Avia Layout Builder #222610

    Hi!

    We’re really not sure why this issue occurs on some installations. There are different factors like plugin conflict, php memory limit, php configurations on the server etc.

    Best regards,
    Ismael

    in reply to: Turtle Trouble #222608

    Hi AndrewDelaware!

    1.) You can use media queries to position the turtle on different screen sizes. Place something like this on Quick CSS:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .turtle {
    position: absolute;
    right: -30px;
    top: 0px;
    }
    }

    2.) Regarding the animation, you can look for css3 animations tutorial on the web. Apply it to the turtle. Cute turtle by the way. :)

    Best regards,
    Ismael

    in reply to: Code Error in Search Box #222603

    Hi!

    You have a lot of plugins installed. It must be a plugin conflict with the search function. Please deactivate all plugins, see if it fixes the issue.

    Cheers!
    Ismael

    in reply to: Contact Form Submit Button #222599

    Hi mattmorse!

    You can move the button towards the right using this on Quick CSS:

    .main_color input[type='submit'] {
    left: 30%;
    position: relative;
    }

    Best regards,
    Ismael

    in reply to: Version 2.5 #222595

    Hi Richard!

    Please wait for another 12 hours, see if the message goes away. Maybe, it is a browser cache or something. You can edit framework > php > wordpress-importer > wordpress-importer.php, find this code on line 1006:

    printf( __( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'wordpress-importer' ), $update->update->new_version );
    

    Replace it with:

    //printf( __( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'wordpress-importer' ), $update->update->new_version );
    

    Regards,
    Ismael

Viewing 30 posts - 61,141 through 61,170 (of 67,534 total)