Forum Replies Created

Viewing 30 posts - 56,731 through 56,760 (of 67,197 total)
  • Author
    Posts
  • in reply to: Bottom adjustment of Menu-Items in default Header-Layout #301126

    Hi Bruno!

    Thank you for using the theme.

    You can adjust the main menu using this on Quick CSS or custom.css:

    nav.main_menu {
    top: 20px;
    }
    
    .av-main-nav ul {
    top: 50px;
    }
    
    .avia-menu-fx {
    position: absolute;
    bottom: 19px;
    }

    The code above is for the main menu, sub menu and menu active/hover state line respectively. Adjust the values if necessary. For the shrink header, add this:

    .header-scrolled nav.main_menu {
    top: 0;
    }
    
    .header-scrolled .av-main-nav ul {
    top: 100%;
    }
    
    .header-scrolled .avia-menu-fx {
    position: absolute;
    bottom: -1px;
    }
    

    Cheers!
    Ismael

    in reply to: Combo Widget – Display specific post category #301119

    Hey wacky32!

    Thank you for using the theme.

    You can edit framework > php > class-framework-widgets.php, find this code on line 939:

    echo '<div class="tab widget_tab_comments"><span>'.__('Comments', 'avia_framework').'</span></div>';
    			echo "<div class='tab_content'>";
    			avia_get_comment_list( array('number' => $posts, 'status' => 'approve', 'order' => 'DESC') );
    			echo "</div>";

    Replace it with something like this

    echo '<div class="tab widget_tab_comments"><span>'.__('Category Name', 'avia_framework').'</span></div>';
    			echo "<div class='tab_content'>";
    			avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc&cat=15');
    			echo "</div>";

    We change the avia_get_comment_list function with the avia_get_post_list then we added the cat parameter and set it to category id 15. You change the category if you want.

    Best regards,
    Ismael

    in reply to: google translation plugin #301117

    Hi bensmithdesign!

    Thank you for using the theme

    Please add this on functions.php:

    function add_google_translate() { ?>
    <meta name="google-translate-customization" content="XXXXXX"></meta>
    <?php
    }
    
    add_action('wp_head', 'add_google_translate');
    
    function add_google_translate_script() { ?>
    <div id="google_translate_element"></div>
    <script type="text/javascript">
    function googleTranslateElementInit() {
    new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
    }
    </script>
    <script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
    <?php
    }
    
    add_action('ava_after_main_menu', 'add_google_translate_script'); 

    This will add the translator right after the main menu.

    Cheers!
    Ismael

    in reply to: Script loading problem #301111

    Hey KattaC!

    Thank you for visiting Kriesi’s forum.

    What is the actual script? How did you add it? Note that we don’t support third party plugin or script as stated on our support policy. On the console there’s already an error for require.js. You should probably ask the script author.

    Best regards,
    Ismael

    in reply to: change margin for headlines and bodycopy #301098

    Hey!

    If you’re not using the advance layout editor, try to enclose the text or objects inside a div or section with a class of .av_textblock_section. Something like this:

    <div class="av_textblock_section">
    CONTENT HERE
    </div>
    

    Regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    If you’re using the masonry gallery, you can add a custom link on the gallery item. Edit the gallery again then click the images on the gallery. Look for the Custom Link field.

    Best regards,
    Ismael

    in reply to: Slider bottom border #301095

    Hi!

    Alright. My bad. I thought you want the other way around. Try to change Global Settings > Slider width to 100% then adjust the width of the BG layer to 100%.

    Cheers!
    Ismael

    in reply to: Transparent header on mobile #300951

    Hi!

    Thank you for the info.

    Please use this:

    @media only screen and (max-width: 767px) {
    .responsive #main {
    padding-top: !important;
    margin-top: -82px;
    }
    
    #main .entry-content-wrapper.clearfix {
    margin-top: 82px;
    }
    }

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Favicon for different platforms in header #300946

    Hi Igor!

    Thank you for using Enfold.

    Try to use the absolute url where the favicons are located. Example:

    <link rel="apple-touch-icon" sizes="57x57" href="http://www.mycoolsite.com/wp-content/themes/enfold/favicon/apple-touch-icon-57x57.png">
    

    Best regards,
    Ismael

    in reply to: Layerslider Transition Problem #300943

    Hi!

    You’re using the latest version of the theme. We haven’t release the latest update of the theme with the layer slider 5.1.2 patch. :)

    Best regards,
    Ismael

    in reply to: Promo Box responsiveness issue #300942

    Hi axelfx07!

    Thank you for visiting Kriesi’s support forum.

    You can increase the right margin of the promobox content. Use this on Quick CSS or custom.css:

    .avia-promocontent {
    margin-right: 400px;
    }

    Regards,
    Ismael

    in reply to: Bold special heading #300940

    Hi!

    Thank you for using the theme and glad you figured that out. If you still have questions, let us know. :)

    Regards,
    Ismael

    in reply to: Portfolio posts layout (content element) #300939

    Hey atrixdave!

    Thank you for using the theme.

    Since you’re asking to fix the layout of the theme, we need to inspect the code but I think you installed a plugin to stop viewers from inspecting the site. Please disable the plugin then we’ll check it again.

    3.) You can reduce the spacing between posts using this on Quick CSS or custom.css:

    .template-blog .post_delimiter {
    margin: 0 0 10px 0;
    padding: 10px 0 0 0;
    }

    Cheers!
    Ismael

    in reply to: formatting #300937

    Hey!

    Thank you for the update.

    You should place the code on Enfold > General Styling > Quick CSS field. Remove browser cache then reload the page a few times to see the changes.

    In case you have any questions, please 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. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    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</a

    Regards,
    Ismael

    in reply to: Menu column headers without hyperlinks & Column width #300936

    Hey!

    Thank you for the info.

    The width and height of the mega menu will depend on the number of menu items and the number of characters a menu item have. You can change the width but it will break the layout of the theme on different screen sizes. Also, you can’t use the mega menu on Secondary or Top Menu.

    Best regards,
    Ismael

    Hi!


    @netchoice
    : Please use this on Quick CSS or custom.css to re-align the blog header:

    header.entry-content-header {
    padding-left: 130px;
    }

    Regarding the second question, the preview image is already large and there are no spaces left to increase the size of the image. Please give us a link to the actual blog page and a screenshot of what you’re trying to do.

    Regards,
    Ismael

    in reply to: Enfold Ajax Search & WMPL #300932

    Hey maratino!

    Thank you for using Enfold.

    I was able to do a search on the english version of the site. I type in “sax” on the search field and the first result is “Fiberreed HEMP Soprano Saxophone”. I tried it again on the deutsche version using the same search characters, the first result is “Fiberreed HEMP Sopransaxophon”.

    Best regards,
    Ismael

    in reply to: Help with header position #300931

    Hey!

    What is your screen resolution? I edited the style.css file and it looks ok now. Please remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Czech translation #300930

    Hey altei!

    Thank you for using Enfold.

    There are lots of translation plugin for wordpress but Enfold is specifically compatible with the WPML plugin.

    Cheers!
    Ismael

    in reply to: Image slider causing text to text to indent #300928

    Hi!

    Thank you for using Enfold.

    I’m sorry but I don’t see the issue on Chrome and Firefox Windows 8. On what browser and OS are you testing this with? A screenshot will surely help.

    Cheers!
    Ismael

    in reply to: Archive feature image shrinks #300927

    Hey!

    Thank you for the info.

    1.) Use this for the featured image:

    .big-preview {
    display: block;
    padding: 10px 55px 10px 0;
    }

    2.) Please use this:

    #wp-calendar td a {
    color: red;
    font-weight: bold;
    }

    Cheers!
    Ismael

    in reply to: Image Hover Overlay Functionality #300924

    Hey iovacomm!

    Thank you for visiting the forum.

    This issue has been reported before. Please edit the image code, replace the inline style of the link tag from display: block to display: inline-block. Check this one for example:

    <a href="#" style="position: relative; overflow: hidden; display: block;"><img style="margin-top: 20px;" src="http://iovanbs.staging.wpengine.com/wp-content/uploads/2014/07/pic1.jpg" (hosted on WPengine) alt="" width="250" height="140" data-wp-imgselect="1"><span class="image-overlay overlay-type-extern" style="left: 21px; top: 20px; overflow: hidden; display: block; height: 140px; width: 260px;"><span class="image-overlay-inside"></span></span></a>
    

    This should be like this:

    <a href="#" style="position: relative; overflow: hidden; display: inline-block;"><img style="margin-top: 20px;" src="http://iovanbs.staging.wpengine.com/wp-content/uploads/2014/07/pic1.jpg" alt="" width="250" height="140" data-wp-imgselect="1"><span class="image-overlay overlay-type-extern" style="left: 21px; top: 20px; overflow: hidden; display: block; height: 140px; width: 260px;"><span class="image-overlay-inside"></span></span></a>
    

    Or better if you remove the inline style altogether.

    Best regards,
    Ismael

    in reply to: Sections Disappearing (Caused by Header) #300923

    Hi iovacomm!

    Thank you for using Enfold.

    This is actually a header issue on Chrome. Please add this on Quick CSS or custom.css:

    #header_main_alternate, #header {
    -webkit-transform: translateZ(0);
    }

    Regards,
    Ismael

    in reply to: WordPress Update 3.9.2 is available! #300922

    Hey WalstonNet!

    Thank you for using the theme.

    If you did any modifications on wordpress itself then it will be removed. All of the theme options will be preserve though. If you want to keep all customization on the theme intact, please use a child theme. Refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Regards,
    Ismael

    in reply to: Gravity Forms Styling #300921

    Hey!

    Thank you for using the theme.

    I’m sorry but I think you left out the link to the actual page. If you have the access to the Gravity Forms css file, edit it then copy the form styles. Add it on css > custom.css file.

    Regards,
    Ismael

    in reply to: Problem with enfold #300521

    Hey sarahed!

    Thank you for using the theme.

    Try to increase the max execution time of your installation. Please refer to this link: http://codex.wordpress.org/Common_WordPress_Errors#Maximum_execution_time_exceeded

    Cheers!
    Ismael

    in reply to: Slow loading website #300520

    Hey!

    Thank you for the info. It says that it only removes unnecessary characters, maybe css, html, javascript comments etc. BWP or any minify plugin combine all js and css files to improve the page load time.

    Cheers!
    Ismael

    in reply to: Portfolio Padding #300519

    Hey Wildwood!

    Thank you for using Enfold.

    Adjust the width of the isotope item via media queries. Use this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    #top .isotope-item {
    width: 120px;
    }
    }

    Best regards,
    Ismael

    Hey michaelhiga!

    Thank you for using Enfold.

    I think it’s a plugin issue. Please add this on Quick CSS or custom.css to remove the checkbox:

    input#hybridCommentOptin {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Remove gray top line from Advanced Layerslider #300515

    Hey mcraig77!

    Thank you for visiting Kriesi’s support forum.

    Please use this on Quick CSS or custom.css to remove the top shadow:

    .avia-layerslider.avia-shadow {
    box-shadow: none;
    }
    
    #header_main {
    border-bottom: none;
    }

    Best regards,
    Ismael

Viewing 30 posts - 56,731 through 56,760 (of 67,197 total)