Forum Replies Created

Viewing 30 posts - 61,021 through 61,050 (of 66,958 total)
  • Author
    Posts
  • in reply to: Position Mega Menu Submenu #214959

    Hey!

    This code should move the mega menu downwards:

    #header .avia_mega_div {
    margin-top: 100px !important;
    }

    This is the screenshot:

    Adjust the top margin to 1px. Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Menu and sidebar issue Windows #214958

    Hi!

    I’m sorry but this is what I see when I tried to login. Let me ask the rest of the support team to check this.

    Cheers!
    Ismael

    in reply to: footer / socket problem on fullwidth masonry pages #214957

    Hey!

    I’m almost sure about the “unclosed tags”. Please post the login details here and set it as a private reply. We would like to inspect the page.

    Cheers!
    Ismael

    in reply to: Searching captions in portfolios or galleries #214955

    Hi!

    You can add this code on functions.php:

    add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
        $function_name = 'avia_relevanssi_search';
        return $function_name;
    }
    
    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
        global $query;
        $tempquery = $query;
        if(empty($tempquery)) $tempquery = new WP_Query();
    
        $tempquery->query_vars = $search_parameters;
        relevanssi_do_query($tempquery);
        $posts = $tempquery->posts;
    
        return $posts;
    }

    Best regards,
    Ismael

    in reply to: Gallery publishing wrong pictures #214954

    Hi!

    The login details doesn’t work. Please check.

    Cheers!
    Ismael

    in reply to: Stand Alone Icons – Pop-up Box Position #214953

    Hi!

    Edit js > avia.js, find this code on line 300:

    switchWidth = 767;

    Replace it with:

    switchWidth = 783;

    This will show the mobile menu instead. Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Cannot import dummy data #214951

    Hi!

    Please test it on another browser or another computer. Post the link of the website here.

    Regards,
    Ismael

    in reply to: Gallery won't save selected images #214950

    Hi!

    You can change that through CSS. Add this on Quick CSS or custom.css:

    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
    width: 35px;
    }
    
    #top div .avia-gallery img {
    padding: 3px;
    width: 100%;
    }

    Best regards,
    Ismael

    in reply to: Add a link in the socket #214946

    Hi fjrichart!

    You can edit footer.php then find the socket code on line 93:

    <footer class='container_wrap socket_color' id='socket' <?php avia_markup_helper(array('context' => 'footer')); ?>>
                        <div class='container'>

    You can place the links below.

    Regards,
    Ismael

    in reply to: recommendation for best Map Plugin for Enfold #214945

    Hi!

    Please edit the slide then set this image (http://69.195.124.83/~elmirad3/wp-content/themes/enfold/config-layerslider/LayerSlider/avia-samples/slide3_Layer_1.png) as background image on Slide Options > Image.

    Regards,
    Ismael

    in reply to: Facebook Widget #214944

    Hi!

    You can use the AddThis Plugin. Please refer to this link for more info.

    Regards,
    Ismael

    Hey!

    Add this on Quick CSS:

    #fullwidthmap .container {
    width: 100%;
    }

    I’m sorry but I don’t understand questions 2 and 3 clearly. Let me ask Dude.

    Cheers!
    Ismael

    in reply to: Remove link from thumbnails in Portfolio Gallery #214941

    Hi!

    Please reset the changes that we made then edit js > shortcodes.js, find this code on line 1007:

    
    gallery.find('.avia-gallery-thumb a').eq( this.getAttribute("data-onclick") - 1).trigger('click');
    

    Replace it with this code to remove the lightbox trigger.

    
    gallery.find('.avia-gallery-thumb a').eq( this.getAttribute("data-onclick") - 1);
    

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

    
    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' $markup_url><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";
    

    Replace it with:

    
    $thumbs .= "<a data-prev-img='".$prev[0]."'><img data-rel='gallery-".self::$gallery."' {$class} data-onclick='{$counter}' title='".$description."' $markup_url {$tooltip} src='".$img[0]."' alt='".$alt."' /></a>";
    

    Last, add this on Quick CSS:

    
    .avia-gallery-big .image-overlay.overlay-type-image {
    	display: none !important;
    }
    

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: megamneu column width #214937

    Hi!

    Please try this:

    #top .main_menu .menu li ul a {
    line-height: 18px;
    min-height: 18px;
    }
    
    #top #header .avia_mega_div > .sub-menu {
    padding: 10px 20px 10px 20px;
    }

    Cheers!
    Ismael

    in reply to: Adding Featured Images to the Search Result #214936

    Hey Bulent!

    You need to set featured images for all pages then edit includes > loop-search.php. Remove everything and replace it with this: http://pastebin.com/pbp2z3x2

    Add this on Quick CSS:

    .search-result-counter {
        padding: 0;
    }
    
    .search-result-counter img {
    	width: 100%;
    	height: 100%;
    	border-radius: 100px;
    }

    Cheers!
    Ismael

    in reply to: Enfold Boxed Version – Borders and drop shadow #214934

    Hi!

    Please add this on Quick CSS or custom.css to create borders on the boxed layout:

    #wrap_all {
    border-right: 1px solid #444444;
    border-left: 1px solid #444444;
    }

    Nice website. :)

    Cheers!
    Ismael

    in reply to: Log and tope menu to switch places #214933

    Hey elgingroup!

    Please add this on Quick CSS or custom.css:

    div .logo {
    right: 0;
    }
    
    .main_menu {
    left: 0;
    }

    Regards,
    Ismael

    in reply to: Position Mega Menu Submenu #214915

    Hey!

    You can add this on Quick CSS:

    #header .avia_mega_div {
    margin-top: 1px;
    }

    Best regards,
    Ismael

    in reply to: footer / socket problem on fullwidth masonry pages #214914

    Hey Sebastian!

    Please check the elements on the page with the footer problem, see if there are unclosed tags or divs. The footer container should be rendered within the wrap_all div or container.

    Best regards,
    Ismael

    in reply to: Changing Terms and Conditions Font Size #214912

    Hi!

    Please give us the login details. Set it as a private reply. We would like to inspect it.

    Regards,
    Ismael

    in reply to: Enfold – Main menu and childs font colors #214911

    Hey!

    Please use this for the header background:

    .header_color .header_bg {
    background-color: blue;
    }

    Change the menu color with this:

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

    This is for the sub menu:

    .header_color .main_menu .menu ul.sub-menu li a {
    color: black;
    }

    Regards,
    Ismael

    in reply to: Menu and sidebar issue Windows #214910

    Hi!

    The website gives me a 406 error. Please check.

    Cheers!
    Ismael

    in reply to: Change Logo Shrink #214749

    Hi!

    I think the problem is you’re using a child theme. Please add this code on the child theme’s style.css:

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:156px; line-height: 156px; }
    
    .logo, .logo a, .logo a img {
    max-width: 340px !important;
    }

    Regards,
    Ismael

    in reply to: fixed background image and width #214748

    Hey!

    Can you please give us a link to the page with the color section?

    Regards,
    Ismael

    in reply to: Remove Search from Nav and Adding a Button #214747

    Hi!

    Please replace the code using this:

    .main_menu #menu-item-2609 a {
    position: absolute;
    width: 120px;
    background: blue !important;
    display: block;
    top: -11px;
    left: -130px;
    height: 40px;
    line-height: 40px;
    color: white;
    padding: 5px 10px 15px 10px !important;
    }

    Cheers!
    Ismael

    in reply to: Social Icons with _blank #214745

    Hi!

    You can add the whole code on helper-social-media.php on the child theme’s functions.php.

    Best regards,
    Ismael

    in reply to: Icon Box and Text #214741

    Hi!

    You can adjust the top margin of the columns:

    body .column-top-margin {
    margin-top: 10px;
    }

    Regards,
    Ismael

    in reply to: Mobile: Menu Button on top of the logo #214738

    Hey!

    Please edit js > avia.js, find this code on line 300:

    switchWidth = 767;

    Replace it with:

    switchWidth = 1024;

    This should display the sildeout menu on iPad screens. Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Remove link from thumbnails in Portfolio Gallery #214737

    Hi!

    Can you please give us the link to the page with the gallery? I don’t see the navigation on the home page.

    Best regards,
    Ismael

    in reply to: Pop Up Plugin #214736

    Hey!

    I don’t think that is possible. It will break the layout of the page.

    Best regards,
    Ismael

Viewing 30 posts - 61,021 through 61,050 (of 66,958 total)