Forum Replies Created

Viewing 30 posts - 59,281 through 59,310 (of 67,572 total)
  • Author
    Posts
  • in reply to: upgrade theme from 2.0 to 2.6 #253416

    Hey!

    Glad it is working now.

    Please wait for the 2.7 update which will fix the custom icon fonts. (see https://kriesi.at/support/topic/custom-icons-in-iconboxes/)

    Cheers!
    Ismael

    in reply to: Child theme does not respect styles #253413

    Hi!

    Thank you for the update.

    The issue, I think, is because the theme is still using the old enfold.css file on wp-content/uploads/dynamic_avia folder and once you updated even a single theme option, it automatically regenerate the enfold_child.css file. Glad it is working on your end now. If you have any questions, let us know.

    Regards,
    Ismael

    in reply to: retina.js use in child theme template path #253411

    Hi!

    Glad you figured it out. Thanks for sharing!

    Cheers!
    Ismael

    in reply to: use search inside the main nav? #253410

    Hey basmati!

    Thank you for using the theme!

    You can add something like this on functions.php:

    add_action('ava_after_main_menu', 'ava_search_form_after_main_menu');
    
    function ava_search_form_after_main_menu() {
    	get_search_form();
    }

    This will add the search form on top the header but you still need to reposition it with css. Add this on Quick CSS to remove the default search icon:

    #top #menu-item-search {
    display: none;
    }

    I hope that helps. Please visit Werkpress for further customization.

    Regards,
    Ismael

    in reply to: Pixel size for small header slider #253407

    Hey!

    Thank you for the link.

    We activated the “Start slideshow” on the Slider Settings > Slideshow and it should work now. :)

    http://timeout4touringinc.abconsulting.co/

    Cheers!
    Ismael

    in reply to: Wie installiere ich ein Enfold Child Theme? #253405

    Hey!

    It is ok to remove that file. You can download it again in case. Glad it is working now. :)

    Regards,
    Ismael

    in reply to: Adding Mail Chimp code to page #253404

    Hey fixedopsinsight!

    Thank you for using the theme!

    Pleasea add this on Quick CSS or custom.css:

    #mc_embed_signup input.button {
    visibility: visible;
    }

    Best regards,
    Ismael

    in reply to: How to make the featured image in the blog view clickable #253124

    Hi bakbek!

    Thank you for using the theme!

    The featured images on the blog overview page should be clickable and link to the actual posts by default. What type of blog style do you have? If you don’t mind, we would like to see the actual blog page.

    Cheers!
    Ismael

    Hi morgantar!

    Thank you for using the theme!

    You can edit js > avia.js, find this code on line 1113:

    imgParent		= container.find('.grid-image')
    

    Replace it with:

    imgParent		= container.find('.grid-image, .grid-content')
    

    Add this on Quick CSS or custom.css:

    .grid-content {
    opacity: 0;
    }
    

    I hope that helps!

    Cheers!
    Ismael

    in reply to: Archive for Category — Display as Masonry #253118

    Hey!

    Thank you for the update.

    Unfortunately, they are not the same. If you want to apply the masonry element on archive pages, you’ll need to hire a freelance developer or visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

    in reply to: Add Google Font #253117

    Hi!

    Thank you for using the theme!

    Make sure that you added the italic version the font when you insert the google font filter on function.php:

    add_filter('avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts) {
    $fonts['Fanwood Text'] = 'Fanwood Text:400,400italic';
    return $fonts;
    }
    
    add_filter('avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Fanwood Text'] = 'Fanwood Text:400,400italic';
    return $fonts;
    }

    I hope that helps.

    Cheers!
    Ismael

    in reply to: Adding a form and text to the right of social icons #253115

    Hi Jonathan!

    Thank you for using the theme.

    Instead of using the ava_after_main_menu hook use the avia_meta_header action hook. You can use this on functions.php

    add_action('avia_meta_header', 'avia_add_forms_on_header');
    
    function avia_add_forms_on_header() {
    	echo '<li class="avia-form-header">DO SOMETHING HERE</li>';
    }

    I added the list tag to align the new element correctly.

    Regards,
    Ismael

    in reply to: Subtitles in excerpt, blog grid #253113

    Hi Victor!

    Thank you for using the theme!

    I’m sorry but this is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. You can find the blog grid code on config-templatebuilder > avia-shortcodes > postslider.php. Find this code on line 374. This is the post date, comment count container. Maybe you can use custom fields to replace the output.

    if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}

    I hope that helps.

    Regards,
    Ismael

    in reply to: image position and resolution issues #253106

    Hey Ben!

    Thank you for using the theme!

    1.) Where are you adding the position absolute? What selectors? Please post a screenshot of the issue so that we can understand it better.

    2.) Glad you figure this one out.

    3.) Please add this on Quick CSS or custom.css:

    .avia-section.av-minimum-height .container {
    display: block;
    }

    You might need to re-align some of the elements. Nice website. :)

    Cheers!
    Ismael

    in reply to: Quick CSS funktioniert nicht. #253098

    Hi Quant2112!

    Thank you for using the theme.

    Do you have a cache plugin like W3 Total Cache? Please deactivate the plugin then try to add css modifications on Quick CSS again. If you don’t mind, we would like to check the actual website. Thanks!

    Best regards,
    Ismael

    in reply to: Style the excerpts in portfolio #253097

    Hey!

    Thank you for the update.

    Please use this for the portfolio preview title:

    .main_color .grid-entry-title {
    color: red;
    font-size: 20px;
    font-weight: bold;
    }

    Cheers!
    Ismael

    in reply to: Selected Header Link States #253095

    Hi!

    Thank you for using the theme.

    This should work if you set up the child pages correctly. If you don’t mind, we would like to check the actual website. We’ll give you a proper solution once we have taken a look at your installation. Thanks!

    Best regards,
    Ismael

    in reply to: Pixel size for small header slider #253093

    Hi!

    Thank you for the update.

    If you don’t mind, we would like to see the actual slider at work. We need to inspect it. Maybe, this is just an issue of how you set up the layer slider.

    Best regards,
    Ismael

    in reply to: Transparent header – Settings #253092

    Hi AndyWoods!

    Thank you for using the theme!

    First thing you need to do is to create a page then set the Layout and Activate Header transparency. Switch to Advance Layout Builder then insert the Fullscreen Slider, look for the “Display a scroll down arrow” option if you want the arrow. I’m not sure what you mean by “white to 4 colour”. There is no such thing on the demo as far as I know. If you don’t mind, please post a screenshot.

    If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. You can also watch some of our Video Tutorials to learn more about the theme.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page.

    Best regards,
    Ismael

    in reply to: Issues since update #253091

    Hi!

    Thank you for the update.

    Along with Yigit’s suggestion, please edit all Color Section’s on the page with the background attachment set to fixed or parallax. Set it to “Scroll”. Let us know if the link starts to work again. Regarding the search script, regretfully, we cannot provide support for third party scripts as stated on our support policy. You might need to investigate this particular issue on your own or hire a freelance developer to apply the proper css media queries. Please do visit Werkpress for further customization.

    Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Layer Slider text block position issues on home page #253087

    Hey!

    Thank you for the update.

    Is this still an issue on your installation? From what I understand, when I checked the website, the text above the slider are responsive. I don’t see the issue described when I resize the browser. What you did with the images with the white space above is not conventional for responsive websites but surprisingly it works. I’m not sure how you did it but I’ll suggest that you remove the white gap above the image then add the background image as another layer. Add another layer on top of it with the text block. Just a suggestion but I think it will be more responsive.

    Best regards,
    Ismael

    in reply to: Content slider #253085

    Hi!

    Thank you for the update.

    Actually it is not the padding of the content slider, it is the padding of the whole content container. Looks like you managed to reduce the content padding but to make the css more specific to that page, please use this:

    .page-id-3401 main.template-page.content.twelve.alpha.units {
    padding-bottom: 10px;
    padding-top: 10px;
    }

    Regards,
    Ismael

    in reply to: Sidebar Background Color #253082

    Hi!

    Thank you for the link.

    I’m sorry but this is not possible with just css. You need to use a jQuery script to find the height of the content and apply it to the height of the sidebar before you can apply the background that will extend up to the footer. Unfortunately, this is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization.

    This link might help: http://www.zyxware.com/articles/2545/jquery-set-the-height-of-one-div-to-another-div

    Thank you for understanding.

    Cheers!
    Ismael

    in reply to: Memory Usage #253081

    Hi!

    Thank you for the update.

    I hope you find the right hosting for your website. 64M for memory limit will not cut it if you’re using Enfold or any other premium themes that contains an ajax visual page builder plus third party plugins. Please let us know if you’re still experiencing the issue when you transfer the website on another host.

    Best regards,
    Ismael

    in reply to: EasySlider Transparent Implementation #253080

    Hi!

    Thank you for the update.

    The background image size on the demo is 1030×684. Fullwidth slider options are set as follows, Slideshow Image and Video Size is set to No Scaling and Stretch image to fit the slideshow size? option is set to No, don’t stretch the image. Background option are as follows, Center center, Stretch to fit and background attachment is fixed. The height of the images use as slide is 600px. I hope that helps.

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #253075

    Hi!


    @Ad-Min747
    : There is an enfold french translation already but there may be strings that needed translation or correction so yes, we’ll greatly appreciate it if you can check the existing fr_FR.po file on the theme’s lang folder. :)

    Cheers!
    Ismael

    Hey!

    Thank you for the update.

    You can change the background color of the scrolled header with this on Quick CSS or custom.css:

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

    If you want to change the color of the text instead, use this:

    .header_color.header-scrolled .main_menu ul:first-child > li > a {
    color: red;
    }

    Regards,
    Ismael

    in reply to: Logo/partner element error #253070

    Hi!

    Thank you for the link.

    I’m not sure why this is happening but this should fix it. Add this on Quick CSS or custom.css:

    #top .avia-content-slider, #top .avia-content-slider-inner, #top .avia-content-slider-inner .slide-entry-wrap {
    -webkit-transform-style: flat;
    }

    I hope it works. I’ll forward this to Kriesi so that he can explain this further.

    Best regards,
    Ismael

    in reply to: after update to WP 3.9 : bug with TinyMCE #253067

    Hey NatachaC!

    Thank you for using the theme.

    I’m sorry but we are not certain of the issue. If you don’t mind, please give us a link to the website then we’ll check it. Please deactivate all plugins, see if the issue persists. If not, activate them again one at a time while testing the editor.

    Regards,
    Ismael

    in reply to: mobile view of blog entries etc. #253065

    Hi!

    Thank you for the update.

    I’m not sure if Kriesi updated the post slider as you described but we can create a work around for this matter. You can add two post slider on the same page then set the first one to show 3 columns, the second one, set to 1 column. We can hide the second slider with 1 column on desktop view and show it when viewing on mobile using media queries.

    Let us know if you want to implement the suggestion above. I’ll forward this thread to Kriesi.

    Best regards,
    Ismael

Viewing 30 posts - 59,281 through 59,310 (of 67,572 total)