Forum Replies Created

Viewing 30 posts - 60,451 through 60,480 (of 66,114 total)
  • Author
    Posts
  • in reply to: Partner/Logo Element title under elements #211064

    Hey ceubri!

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

    
    $output .= !empty($link) ? "<a href='{$link}' data-rel='slide-".avia_partner_logo::$slider."' class='slide-image' title='{$linktitle}' {$blank} >{$img}</a>" : $img;
                        $output .= "</div>";
    

    Replace it with:

    
    $output .= !empty($link) ? "<a href='{$link}' data-rel='slide-".avia_partner_logo::$slider."' class='slide-image' title='{$linktitle}' {$blank} >{$img}</a>" : $img;
    					$output .= "<div class='logo-title'>".$hover."</div>";
                        $output .= "</div>";
    

    Best regards,
    Ismael

    in reply to: Images not displaying properly #211063

    Hi!

    I’m not really sure why the featured images are not working. Please deactivate the Yeost SEO plugin then report back here.

    Regards,
    Ismael

    in reply to: LayerSlider WP Transparent First Slide #211062

    Hey!

    Can you please post the link to the actual website? The code I gave you works as intended. Probably needed a few adjustments on your end.

    Cheers!
    Ismael

    in reply to: Moving a layout element (Testimonials) #211060

    Hey!

    Glad we could help. :)

    Cheers!
    Ismael

    in reply to: How do I increase the font size on Post/Pages Titles #211058

    Hi David!

    Please use this on Quick CSS to increase the size of the font:

    .title_container .main-title {
    font-size: 30px;
    font-weight: 400;
    }

    Best regards,
    Ismael

    in reply to: Portfolio and Mosaic picture issues #211057

    Hey!

    Did you use the 1/1 column? It will still give you a container with 100% width. Try using a smaller column like 1/2 or 1/3. Please post the link of the page where you’re testing it.

    Best regards,
    Ismael

    in reply to: Custom Color Selector bug #211055

    Hey jtree5757!

    Maybe there is a plugin that is messing up with color selector styling. Deactivate existing plugins then try again. Please give us a link to the website or post the login details here as a private reply.

    Best regards,
    Ismael

    in reply to: Error on updating to Enfold 2.4.5 #211053

    Hey mikejmccarthy!

    Right click the link then open it on a new tab or click this http://goo.gl/tid2DE. :)

    Regards,
    Ismael

    in reply to: disable responsive menu #211050

    Hey!

    Please use this to remove the mobile menu:

    @media only screen and (max-width: 968px) {
    .responsive #top .mobileMenu {
    display: none !important;
    }
    }

    Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Moving a layout element (Testimonials) #211049

    Hey MtnStreamGroup!

    Please switch your theme to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. Copy the actual shortcode then transfer it to another page.

    Regards,
    Ismael

    in reply to: Mobile Search Bar #211048

    Hey!

    Add this on Quick CSS:

    @media only screen and (min-width: 767px) {
    #searchform {
    display: none;
    }
    }

    Use this to adjust the searchbar position:

    @media only screen and (min-width: 767px) {
    #top #searchform {
    position: absolute;
    top: 90px;
    }
    }

    Best regards,
    Ismael

    in reply to: Gallery #211047

    Hey!

    You should probably crop the images manually before uploading them. Use image editor like photoshop. You can also give the img tag a unique css selector then specify the max height value. Example:

    
    <img class="aligncenter" title="Experiential Communications Design" alt="Experiential Communications Design Photo" src="http://mountainstreamgroup.com/wordpress/wp-content/uploads/2011/01/mtnstreamgroup_experiential_communication_design.jpg" width="150" height="150">
    

    You can add the css class beside the “aligncenter”. Let’s use the selector “fixheight”.

    
    <img class="aligncenter fixheight" title="Experiential Communications Design" alt="Experiential Communications Design Photo" src="http://mountainstreamgroup.com/wordpress/wp-content/uploads/2011/01/mtnstreamgroup_experiential_communication_design.jpg" width="150" height="150">
    

    You can add this on Quick CSS:

    .fixheight {
    max-height: 150px;
    }

    Best regards,
    Ismael

    in reply to: Images not displaying properly #211046

    Hi aweirick!

    The image “http://gspwebsite.swiftworks.com.au/wp-content/uploads/2014/01/starlight-cinema31.jpg&#8221; does not exist. Please upload it again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

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

    Hi!

    Yeah sure. You can add this on Quick CSS:

    .social_bookmarks li a {
    width: 30px;
    line-height: 32px;
    min-height: 30px;
    height: 100%;
    text-align: center;
    font-size: 15px;
    }

    Cheers!
    Ismael

    in reply to: WPML Language switcher options not working #211044

    Hey!

    Place it on Quick CSS or custom.css. It is important that you add the css code.

    Cheers!
    Ismael

    in reply to: Centering words in mobile menu dropdown #211041

    Hey Vada!

    I’m really not sure if this is possible with css. I think the option or select styling depends on the browser. Please hire a freelance developer to modify the option alignment using javascript.

    Cheers!
    Ismael

    in reply to: Cart Side Problem with Size #211040

    Hey!

    Is this the cart widget? I’m sorry I don’t understand the language. We need the actual website so that we can inspect the buttons and give you a proper css solution.

    Regards,
    Ismael

    in reply to: Responsive random quote section #211039

    Hey!

    Please post the login details here and the actual background image. I will try to tweak it.

    Regards,
    Ismael

    in reply to: Blog Posts –> Specific Post #211038

    Hey!

    Give the post a unique category to the post.. or tag if you choose to display a custom taxonomy. Select this category or tag on the Blog Posts element then set only “1” on Posts number and disable the Pagination.

    Best regards,
    Ismael

    in reply to: Customizing buttons? #211037

    Hey!

    Did you use the button element or shortcode? You change the text color using this on Quick CSS:

    #top .main_color .avia-button.avia-color-theme-color, #top .main_color .avia-button.avia-color-theme-color:hover {
    color: blue;
    }

    Change the button background using this:

    .main_color .avia-color-theme-color {
    background-color: red;
    }

    There are lots of tutorial on how to create a custom button. We need to see the button that you designed.

    Best regards,
    Ismael

    in reply to: Enfold Layerslider not working #211033

    Hey!

    You should export the slides inside the wp_layerslider not the wp_layerslider table. Have you tried that?

    Cheers!
    Ismael

    in reply to: layerslider stopped working #211032

    Hi sivanrevivo1!

    The theme’s default LayerSlider plugin does not support shortcodes. You need to install it as a standalone plugin. You can purchase it on codecanyon. Please use the Advance Layout Builder if you want the layer slider.

    Regards,
    Ismael

    in reply to: Search Not Working #211029

    Hi mcuria!

    You have an old version of the theme, download the latest version on your themeforest account then update your installation via FTP. The update might fix the issue. Watch this video by Devin on how to update via FTP: https://vimeo.com/channels/aviathemes/64927356. Also, deactivate existing plugins then test the search again on another browser.

    Cheers!
    Ismael

    in reply to: Sidebar menu: need to emphasize ! #211028

    Hi!

    The image on the link is so small and it can’t be opened via lightbox. Please post the screenshot on imgur. Make sure it is clear and big so that we can understand what you want. Thanks.

    Regards,
    Ismael

    in reply to: Lizenzkauf für Kunde #211024

    Hi Hannes!

    I’m not sure if understand you correctly. Can you please translate it to english? You can also wait for Dude’s response.

    Best regards,
    Ismael

    Hi!

    Have you tried the solution above? Please give us a link where you tested it. We’ll inspect the page.

    Regards,
    Ismael

    in reply to: How to adjust height of header #211018

    Hi!

    You just need to change these line of codes:

    if(st < el_height/2)

    Replace with:

    if(st < el_height/1.5)

    And this line of code:

    newH = el_height/2;

    Replace it with:

    newH = el_height/1.5;

    You can see those lines inside the function avia_header_size() on line 1285. Remove browser cache and reload the page a few times to see the effect.

    Cheers!
    Ismael

    in reply to: Add a new custom font #211016

    Hi Kvanto!

    Please locate this code on functions.php, you can find it at the very top:

    global $avia_config;

    Below, add the google font filter:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['PT Sans Narrow'] = 'PT Sans Narrow';
    $fonts['PT Sans'] = 'PT Sans';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['PT Sans Narrow'] = 'PT Sans Narrow';
    $fonts['PT Sans'] = 'PT Sans';
    return $fonts;
    }

    Cheers!
    Ismael

    in reply to: post multiple images #210844

    Hey xpoveda!

    Create a post then choose the Gallery format.

    Regards,
    Ismael

    in reply to: Problems adding a custom logo #210841

    Hi!

    I think it is because of the header_bg opacity. Please add this on Quick CSS:

    .header_bg {
    opacity: 1;
    filter: alpha(opacity=100);
    }

    Best regards,
    Ismael

Viewing 30 posts - 60,451 through 60,480 (of 66,114 total)