Forum Replies Created

Viewing 30 posts - 60,901 through 60,930 (of 66,075 total)
  • Author
    Posts
  • in reply to: Slider on Google Chrome #203213

    Hey journey5956!

    This is what I see when I checked the site on Chrome. It works properly but the I think you need to set the Slider width to 100% on Global Settings:

    Cheers!
    Ismael

    in reply to: sidebar #203212

    Hey kecster2!

    I’m sorry but can you please post a screenshot of what you’re trying to do

    Regards,
    Ismael

    in reply to: How to stretch full width in landscape on iPhone? #203203

    Hey markbener!

    Please use this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive .boxed#top {
    width: 100%;
    }
    }

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: disabling lightbox #203202

    Hi!

    Dude’s code work properly on my end. Please use this on your child theme’s function.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    /*
     * Register frontend javascripts:
     */
    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	wp_dequeue_script('avia-prettyPhoto');
    	wp_dequeue_style('avia-prettyP');
    	wp_dequeue_style('avia-custom');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    }
    
    ?>

    Then create a js folder inside the child theme folder, create the avia.js file. Add this code:

    function avia_lightbox_callback(elements,ww,wh){
        (function($){
            elements.each(function()
            {
                var el = $(this);
                if(!el.hasClass('noLightbox'))
                {
                    el.addClass('lightbox');
                }
            });
            
            jQuery('a.lightbox').on('click', function() { return false; });
        })(jQuery);
    }

    Please check it again.

    Regards,
    Ismael

    Hi!

    You can edit header.php or /includes/helper-main-menu.php if you have 2.6+, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
    

    Below, add this code:

    echo "<div class='site-description'>".get_bloginfo ( 'description' )."</div>";
    

    Edit Enfold > Styling > Quick CSS, add this code:

    .site-description {
    bottom: -30px;
    position: absolute;
    font-size: 11px;
    }

    Best regards,
    Ismael

    in reply to: Button in secondary menu #203193

    Hi!

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

    #menu-item-2508 a {
    background: blue !important;
    padding: 10px;
    color: white !important;
    }

    Best regards,
    Ismael

    in reply to: mouseover #203192

    Hi kecster2!

    Use this on your custom.css or Quick CSS:

    .avia-button.avia-icon_select-no.avia-color-custom.avia-size-medium.avia-position-center:hover {
    background-color: red !important;
    }

    Regards,
    Ismael

    in reply to: How to change menu woocommerce widget colours? #203191

    Hey!

    Just change the color value:

    #top #main .sidebar_left .sidebar {
    border-left: 1px solid rgba(0, 0, 0, 0.3);;
    }

    Change the rgba color to something else.

    Best regards,
    Ismael

    in reply to: How to change menu woocommerce widget colours? #203190

    Hey!

    Just change the color value:

    #top #main .sidebar_left .sidebar {
    border-left: 1px solid rgba(0, 0, 0, 0.3);;
    }

    Change the rgba color to something else.

    Best regards,
    Ismael

    in reply to: home page spacing #203187

    Hey!

    You can use this on Quick CSS:

    .page-id-393 #av_section_5 .avia_message_box {
    margin: 00px 0;
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Swapping logos? #203186

    Hey Dan!

    It is a custom script made by Kriesi. Please hire a freelance developer to modify the theme for you.

    Cheers!
    Ismael

    in reply to: How to get the magnifying feature off of pics? #203000

    Hey!

    @NaturalIntegrative: You can disable the lightbox function. Edit js > avia.js file, find this code on line 54:

    //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    Replace it with:

    //activates the prettyphoto lightbox
            //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Force mobile nav at 1140px #202998

    Hey!

    What do you mean by switch order? You can arrange the order of the menu items on Appearance > Menus panel. Create a new menu then set it as Enfold Secondary Menu on Theme Locations option.

    Best regards,
    Ismael

    in reply to: Sidebar Subnavigation Sort Order #202997

    Hi akmhou!

    Please use this on functions.php:

    add_filter('avia_sidebar_menu_args', 'avia_sort_sidebar_pages',10, 2);
    function avia_sort_sidebar_pages($args, $post)
    {
    $args['sort_column'] = 'ID, post_title';
    return $args;
    }

    Best regards,
    Ismael

    in reply to: Chaging image sizes #202996

    Hey!

    After you click the “Add Media” button, select the size of the image that you want to use on ATTACHMENT DISPLAY SETTINGS > Size.

    Cheers!
    Ismael

    in reply to: Mobile site not formatted correctly… #202846

    Hey!

    You can experiment with this css modification to increase the height of the slider images on mobile view.

    @media only screen and (max-width: 767px) {
    .av_slideshow_full li img {
    border-radius: 0px;
    min-height: 200px;
    min-width: 500px;
    margin-left: -200px;
    }
    }

    Regards,
    Ismael

    in reply to: Redirect Loop Error version 2.4.4 #202819

    Hi wholereneducation!

    It loads fine on my end. On what browser are you testing it with? Please remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: How to correctly enque JS with Enfold #202817

    Hey Imburr!

    Please refer to this link and follow Dude’s instruction: https://kriesi.at/support/topic/script-for-google-analytics-link-tracking/

    Cheers!
    Ismael

    in reply to: masonry blog #202781

    Hi!

    Can we please check it again? It is currently under maintenance. Please post a screenshot of the issue.

    Regards,
    Ismael

    in reply to: CSS Styles doesnt work #202780

    Hi!

    Like Devin said, you should not modify anything on the theme files because it will be overwritten when you update the theme. You should add the css modifications on the Enfold > Styling > Quick CSS. You need to add it again on Quick CSS or ask your host to do a backup restore if they have any.

    Best regards,
    Ismael

    in reply to: Heading Font Gruppo #202466

    Hi!

    It looks ok on Chrome. It looks broken because some of the portfolio items doesn’t have featured images yet.

    Regards,
    Ismael

    in reply to: un-link pictures in ajax portfolio image lists #202465

    Hi nini_bacher!

    Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 642:

    $output .= " <a href='".$img[0]."' class='portolio-preview-list-image' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    Replace it with:

    $output .= " <a href='".$img[0]."' class='portolio-preview-list-image noLightbox' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    Remove browser cache then reload the page. You can also add this on your custom.css or Quick CSS to disable the image link entirely:

    .portolio-preview-list-image {
    pointer-events: none;
    }

    Cheers!
    Ismael

    in reply to: Website Not Working Properly in IE #202461

    Hi!

    You can disable the “Minify CSS files automatically?” option.

    Best regards,
    Ismael

    in reply to: Viewport Meta #202453

    Hey akmhou!

    Yes, you can change that on your child theme’s header.php if you want the site to enable zoom on mobile devices. If it doesn’t work you can try this:

    <meta name="viewport" content="user-scalable = yes">

    Best regards,
    Ismael

    in reply to: enfold no change language to spanish #202448

    Hi mrivas1804!

    Use the WPML plugin. You can download the language pack here, extract it on the theme’s lang folder: Spanish: http://bit.ly/enfold-es_ES

    Regards,
    Ismael

    in reply to: Enfold > masonry post > image size #202445

    Hi David!

    You can adjust the width of the featured image using this:

    .fullsize .big-preview.single-big {
    max-width: 1000px;
    }

    Best regards,
    Ismael

    in reply to: Layer slider standalone plugin appear strangely #202444

    Hi katana!

    Have you tried uploading a larger image? Maybe, double the size of the usual. Try this plugin: http://wordpress.org/plugins/wp-retina-2x/

    Best regards,
    Ismael

    in reply to: Problem with double menus and error code #202442

    Hi!

    Please give us a link to the website. Have you tried removing the browser cache? Test it on another browser. Go to Appearance > Menus and set the Theme Locations > Enfold Main Menu and Enfold Secondary Menu.

    Best regards,
    Ismael

    in reply to: Icon Box Edit #202440

    Hey Michael!

    Can you please give us a link to the website? Post the login details here as a private reply. We would like to inspect the elements.

    Cheers!
    Ismael

    Hi David!

    I’m sorry but you need to hire a freelance developer to customize the theme for you. You can hire someone from http://werkpress.com/.

    Best regards,
    Ismael

Viewing 30 posts - 60,901 through 60,930 (of 66,075 total)