Forum Replies Created

Viewing 30 posts - 57,271 through 57,300 (of 67,197 total)
  • Author
    Posts
  • in reply to: Featured Image – size no lightbox #288915

    Hey Snerp!

    Thank you for using the theme.

    Please add this on the child theme’s functions.php:

    function avia_change_image_size_array() {
    global $avia_config;
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>420);		                 // big images for blog and page entries
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( 'init', 'avia_change_image_size_array', 1);

    Upload the image again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: Gallery lightbox styling #288911

    Hi nokostudio!

    Thank you for using the theme.

    Please download the latest version Enfold 2.9. The prettyPhoto lightbox has been replaced with MagnificPopup.

    Best regards,
    Ismael

    in reply to: Mega Menu alignment #288910

    Hi!

    Thank you for using the theme.

    Please add this on Quick CSS or custom.css:

    #top .av-main-nav > li:hover > a {
    color: white;
    background-color: transparent;
    }
    
    #top .av-main-nav > li:hover > a > .avia-menu-text {
    background: blue;
    padding: 5px 10px;
    border-radius: 5px;
    }

    Cheers!
    Ismael

    in reply to: Enfold Advanced Layer Slider kills Next and Prev post #288906

    Hey HuxburyQuinn!

    Thank you for using the theme.

    Please 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;
    }

    Cheers!
    Ismael

    in reply to: Portfolio styling #288861

    Hey lome61!

    Thank you for using the theme.

    1.) Looks like you managed to figure this one out. If not, please use this:

    .main_color #js_sort_items {
    background: transparent;
    }
    
    .sort_by_cat a.active_sort span {
    background: transparent;
    color: yellow;
    font-size: 16px;
    }

    2.) Please use this to add a border:

    .grid-image img {
    border: 2px solid white;
    }

    3.) Use this for the grid title:

    main_color .grid-content, .main_color .grid-entry-title {
    background: transparent;
    color: red;
    }

    4.) This should not affect other elements on the theme.

    Regards,
    Ismael

    Hi!

    Thank you for using the theme!

    Please try to deactivate all plugins then re-activate them one at a time to find the culprit. If you have W3 Total Cache plugin, disable the minify settings or clear the plugin cache.

    Best regards,
    Ismael

    in reply to: Youtube video not working in LigthBox #288851

    Hey CloudChoice!

    Thank you for the update.

    I tested the youtube video on my end and it’s not working when you play it on lightbox but it does play when you’re on the actual youtube page. We will report the issue to Kriesi. For now, please remove the rel=0 attribute. It should work afterwards.

    Regards,
    Ismael

    in reply to: Layer Slider Images #288841

    Hi!

    Thank you for the info.

    The “Looking back 98% of brides” text and the other one at the bottom slides in properly after the page load. Please try to remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    Hey!

    Thank you for using the theme.

    I don’t see the issue on iPad or iPod touch 5 which has same exact resolution as iPhone if I am not mistaken. The next section arrow is visible on those two devices, landscape or portrait. I don’t want to suggest changing the bottom position of the anchor link but if you want you can try this:

    .avia-ipad #top .scroll-down-link {
    bottom: 20px;
    }

    Or for iPhone:

    .avia-iphone #top .scroll-down-link {
    bottom: 20px;
    }

    Cheers!
    Ismael

    in reply to: Font Preview and changing colors in header #288796

    Hey!

    Thank you for the update.

    Please add this on Quick CSS or custom.css:

    #top .av-main-nav > li > a {
    color: white;
    }

    If you want to change the color of the social icons as well, use this:

    .header_color .social_bookmarks a {
    color: white;
    }

    Use this one for the submenu:

    .header_color .main_menu .menu ul li a {
    color: white;
    }
    
    #top .header_color .main_menu .menu ul li>a:hover {
    color: #ffffff;
    background: orange;
    }

    Best regards,
    Ismael

    in reply to: Avia Layout elements deleting on update #288793

    Hey PaintedMidget!

    Thank you for using the theme!

    Please check all html tags like strong, div, p etc. Make sure that they are closed properly. Test the page, edit it then update. Look for the last element that is not deleted. Maybe you forgot to close something there.

    Cheers!
    Ismael

    in reply to: Different tax rates woocommerce #288791

    Hi!

    Thank you for the update.

    If it’s not working on the wordpress default template like twenty thirteen then it’s not a theme related issue. Please contact the woocommerce support.

    Best regards,
    Ismael

    in reply to: Only showing 1 product in the woocommerce backend #288789

    Hey!

    Glad it is fixed. If you still have questions, let us know. :)

    Cheers!
    Ismael

    in reply to: how to create a 3 column wide Masonry Gallery #288788

    Hi jelmerstolp!

    Thank you for using the theme!

    Try to adjust the width of the masonry entries with this on Quick CSS or custom.css:

    .av-masonry-entry {
    width: 33.33%;
    }

    Regards,
    Ismael

    in reply to: missing menu intext editor #288787

    Hi!

    Thank you for the update.

    Please click the icon before the blue shortcode wand to toggle the toolbar.

    Cheers!
    Ismael

    in reply to: Add Tags on Portfolio Grid #288785

    Hi!

    Thank you for using the theme!

    First, using the plugin create a custom field called portfolio-test for example. Edit admin > register-portfolio.php, find this code on line 38:

    'supports' => array('title','thumbnail','excerpt','editor','comments')
    

    Replace it with:

    'supports' => array('title','thumbnail','excerpt','editor','comments','custom-fields')
    

    This will enable the custom fields or portfolio items. Next edit the portfolio item then add the portfolio-test custom field. Edit config-templatebuilder > avia-shortcodes > portfolio.php find this code on line 471:

    $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    

    Replace it with this:

    $custom_field1 = get_post_meta( $the_id, 'portfolio-test', true );
    					 
                        $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    					$output .= $custom_field1;

    We create a variable called $custom_field1 and applied the portfolio-test key. We then output the $custom_field1 below the excerpt.

    Best regards,
    Ismael

    in reply to: Something is breaking the layout of two pages. #288779

    Hi!

    Thank you for the info.

    It has something to do with the Text Block after the slider. Somehow this code is breaking the layout:

    <!--
    <h3>Newsletter sign-up</h3>
    <p class="note">Stay up to date with our Newsletter</p>
    
    <fieldset>                 <input type="text" placeholder="Name" value="Name" />
    <input type="text" placeholder="E-mail address" value="E-mail address" />
    <input type="submit" value="Submit" class="submit" /></fieldset>
    -->

    Please remove it. You can check the correct page here: http://www.breastcenterofacadiana.com/test-footer/

    Regards,
    Ismael

    Hey!

    Thank you for the update.

    I created a test page and there are script errors when you activate the woocommerce plugin. Maybe woocommerce in combination of another third party plugin is causing the issue. Deactivate all plugins then leave woocommerce activated. See if the advance builder works.

    Cheers!
    Ismael

    in reply to: Notification Box #288770

    Hey!

    Glad it worked.

    Which page? Please post the url here. We need to inspect the actual element in order to give you a css specifically for that page.

    Best regards,
    Ismael

    Hey!


    @mayorninja
    : Yeah, I’m sorry about that. I thought he’s using Tri.be Events Calendar. Event Manager uses “event” as custom post type so that filter should work. Thanks! :)

    Best regards,
    Ismael

    in reply to: Custom.css and Quick CSS Not Working #288762

    Hi!

    Thank you for using the theme!

    I checked the page and the style on the footer is being applied. Let us know if the issue persist. Enfold 3.9 is out, please download in from your themeforest account. :)

    Cheers!
    Ismael

    Hey!

    Alright. Let’s wait for at least a month, see if the request got upvoted. If not, you’ll have to find a plugin or hire someone to add it for you.

    Best regards,
    Ismael

    in reply to: Video Problems #288759

    Hi!

    Thank you for the update.

    Please use this on Quick CSS or custom.css:

    #top .avia-fullscreen-slider .av-video-slide.av-video-service-vimeo iframe {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    }

    Regards,
    Ismael

    in reply to: Adding your own Icon Fonts with child theme #288749

    Hey!

    Alright. Please post the website url here along with the login details. Set it as a private reply. We would like to test it. Make sure that you’re running WP 3.9.1 plus the latest version of the theme.

    Regards,
    Ismael

    in reply to: Stretched/Fluid Layout with Background Image #288746

    Hi samforan!

    Thank you for using the theme.

    Use the Color Section element. Add a background image then place all content inside the section.

    Cheers!
    Ismael

    in reply to: Problem with RTL text #288744

    Hey!

    Thank you for the update.

    Do you mind if we take a look at the actual page with the “dot” issue?

    Regards,
    Ismael

    in reply to: Enfold – Blog posts font styling #288556

    Hey!

    Thank you for the update.

    Regarding round image, use this:

    .rounded-container, .rounded-container img {
    border-radius: 0;
    }

    I thought you’re trying to change the single post view. Anyway, glad you fixed the font size on blog overview page.

    Best regards,
    Ismael

    in reply to: Avia Layerslider stopped working #288554

    Hey!

    Please post the login details here and set it as a private reply. We would like to check it. Is it ok if we deactivate all plugins while working on the site?

    Best regards,
    Ismael

    Hi wacky32!

    Thank you for using the theme!

    I’m sorry but the website does not exist. Please check. If possible, please post a screenshot of what you’re trying to do. You can use imgur, dropbox, clipular etc.

    Regards,
    Ismael

    in reply to: Tool Tip Hover text #288550

    Hi!

    Thank you for the update.

    I’m sorry but there’s a big chance that a third party plugin is causing the issue because we can’t reproduce it on our test server. You’re right, the tooltip works fine when the site is NOT finish loading which tells us that after a certain script has been loaded, it somehow breaks the tooltip function. Did you modify any theme files? Please totally deactivate all plugins. Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

Viewing 30 posts - 57,271 through 57,300 (of 67,197 total)