Forum Replies Created

Viewing 30 posts - 46,441 through 46,470 (of 66,052 total)
  • Author
    Posts
  • Hey!


    @Hyperopic
    : Thank you for the clarification. We hope the patch fix the issue for everyone else here.

    Cheers!
    Ismael

    in reply to: bring text down and center text #476900

    Hey!

    Add this code:

    p#element_avia_deine_e-mail_1 + p + p#element_avia_avia_age_1 {
      top: -31px;
    }

    Regards,
    Ismael

    in reply to: center image and text vertical #476898

    Hey!

    You can move the portrait with this:

    .avia-image-container.av-styling-circle.avia-builder-el-9.avia-builder-el-no-sibling.blog_portrait-class.custom-image_blog_round.avia-align-center {
      top: 10px;
    }

    Best regards,
    Ismael

    in reply to: center vertical #476897

    Hey wiwaldi79!

    Thank you for using Enfold.

    Add a custom section id to the color section then adjust the position of the column:

    #custom-section .flex_column.av_two_fifth.flex_column_div.first.avia-builder-el-45.el_after_av_hr.el_before_av_three_fifth {
      position: relative;
      bottom: -80px;
    }

    You can learn basic css here: https://css-tricks.com/category/beginner/

    Cheers!
    Ismael

    in reply to: Enfold + Woocommerce "Sidebar on Smartphones" issues #476896

    Hey!

    You can add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($) {
      if($('#advanced_menu_hide').css('display') == 'block') {
        var sidebar = $('#top #main .single-product-main-image .sidebar').detach();
        $('.single-product-summary').append(sidebar);
      }
    }(jQuery));
    </script>
    <?php
    }

    The code should move the location of the product sidebar below the product summary on mobile view. Remove browser cache then reload the page.

    Regards,
    Ismael

    Hi!

    Please create a new topic here: https://kriesi.at/support/forum/enfold/

    Refer to this link above to fix the issue above: https://kriesi.at/support/topic/how-to-change-position-of-wpml-langs-on-the-right-of-my-secondary-menu/#post-436577

    Cheers!
    Ismael

    in reply to: Upgraded to WP 4.2.2 and enfold is not working ! #476891

    Hey!

    I checked the dashboard and the demo pages are added in your installation. I would like to test the demo myself but it will override the existing one.

    Best regards,
    Ismael

    in reply to: Masonry Gallery Captions on Mobile #476889

    Hi!

    You can insert this inside the media query:

    .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content {
      padding: 1px;
      font-size: 12px;
    }

    Best regards,
    Ismael

    in reply to: Layer Slider text shows up after click or scroll #476887

    Hi!

    I really can’t reproduce the issue. The text displays a bit delayed on a few refresh but I didn’t have to click anything for it to display. I can see the same thing as Rikard’s screenshot. Please wait for the browser to fully load the page.

    Best regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    Each language has their own theme options so you will have to configure each language manually.

    Regards,
    Ismael

    Hi!

    Add this code to fix the social icons when you scroll down:

    #top #wrap_all .header-scrolled .social_bookmarks a {
      color: gray !important;
    }

    Best regards,
    Ismael

    in reply to: Masonry Gallery Lightbox Figcaption Titles missing #476879

    Hey!

    Edit the image in the Media > Library then add the title or description in the “Caption” field.

    Cheers!
    Ismael

    in reply to: Tracking Events #476877

    Hi!

    Is there any article or documentation about these scripts that we can check? A link to the site where you get the code will help. We need to know what the function means. Did you try using the code block element?

    Cheers!
    Ismael

    Hi!

    Are you trying to add the search bar instead of the search icon? Try to add this in the functions.php file:

    add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10, 1 );
    
    function avia_append_search_nav_mod( $items)
    {
        ob_start();
        get_search_form();
        $form = ob_get_clean();
    
        echo "<div class='custom-form'>{$form}</div>";
    }

    Use in the Quick CSS field to adjust the position of the search field:

    .custom-form {
      position: absolute;
      right: 0;
      top: 20px;
    }

    Cheers!
    Ismael

    in reply to: blog page article length 100% – no 'read more' link #476867

    Hi damatia!

    Thank you for using Enfold.

    Looks like you created the post by using the advance layout builder then added an excerpt. Unfortunately, it will not be able to display the content built inside the ALB. It will display the summary in the excerpt box plus a read more link. If you want to display the full content, use the default editor then remove the custom excerpt.

    Best regards,
    Ismael

    in reply to: Video won't play on mobile devices (and Safari) #476866

    Hey headbentdesign!

    Thank you for using Enfold.

    Did you use it on a slider? Please give us a link to a test page so that we can check it. Make sure that you have the latest version of the theme.

    Best regards,
    Ismael

    Hey!


    @Hyperopic
    : Thank you for the detailed info. So a temporary folder is being created on the C:\Windows\Temp directory? Is this the same directory set in the upload_tmp_dir directive when you check the php info page? Is the url limitation, in some way, related to this article?

    https://technet.microsoft.com/en-us/library/ff919564(v=office.14).aspx#limits

    I’m sorry if we asked a lot of questions instead of providing one but, unfortunately, we are not server administrators so we are not familiar with this stuff. We will forward this info to Kriesi, maybe he can ask envato or themeforest to shorten the url path.

    Best regards,
    Ismael

    in reply to: Events Countdown Widget Bug #476855

    Hi!

    I’m not sure what he’s saying. The class_exists is a basic function to check whether a specific class has been defined. Did the hosting support test it on that page? Like I said, that same line (#post-475727) is working on my installation. This is the screenshot of the var_dump function displaying the value of the $upcomings variable:

    As you can see it is displaying the “Rock Event” which is a sample of an upcoming event on my installation. Please ask him to take a screenshot of the test page after he use the var_dump function on the events_countdown.php file.

    Cheers!
    Ismael

    Hey!

    Are you referring to the padding below the title container? You can try this:

    #main .title_container + .container_wrap > .container .template-page {
      padding-top: 10px;
    }

    Regards,
    Ismael

    in reply to: Setting when to switch to responsive view #476236

    Hi!

    You can try this in the Quick CSS field:

    @media only screen and (max-width: 1024px) {
    	.responsive #top #wrap_all #header {
    		position: relative;
    		width: 100%;
    		float: none;
    		height: auto;
    		margin: 0 !important;
    		opacity: 1;
    	}
    	
    	.responsive #top #main {
    		padding-top: 0 !important;
    		margin: 0;
    	}
    	
    	.responsive #top .logo {
    		position: static;
    		display: table;
    		height: 80px !important;
    		float: none;
    		padding: 0;
    		border: none;
    		width: 80%;
    	}
    	
    	.responsive .logo img {
    		height: auto !important;
    		width: auto;
    		max-width: 100%;
    		display: block;
    		max-height: 80px;
    	}
    	
    	.responsive #top #wrap_all .container {
    		width: 85%;
    		max-width: 85%;
    		margin: 0 auto;
    		padding-left: 0;
    		padding-right: 0;
    		float: none;
    	}
    	
    	#advanced_menu_toggle, #advanced_menu_hide {
    		display: block;
    	}
    	
    	.html_header_sidebar .main_menu {
    		display: none;
    	}
    	
    	#mobile-advanced {
    		display: block;
    	}
    	
    	.responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area {
    		display: none;
    	}
    	
    	.responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
    		margin: 0;
    		margin-bottom: 20px;
    		width: 100%;
    	}
    }

    It will switch to the top header earlier than usual.

    Best regards,
    Ismael

    in reply to: Comments count is wrong #476233

    Hi!

    Which exact plugin did you use? Can you see the comments in the Dashboard > Comments panel?

    Regards,
    Ismael

    Hey!

    1.) Replace the code with this:

    .avia-testimonial {
      border: 0;
    }

    2.) Add another “Products” menu item right beside the default one, don’t set it as a mega menu. You can use a custom link or just simply add the products page. We can use css to hide this menu item on desktop then show it on mobile device.

    Regards,
    Ismael

    in reply to: Enfold separator/whitespace doesn't appears #476230

    Hey!

    Thank you for the screenshot. The separator markup is not there when I checked it. What happens when you move the separator inside the color section?

    Cheers!
    Ismael

    in reply to: center image and text vertical #476229

    Hey wiwaldi79!

    Thank you for using Enfold.

    I checked the site but it’s not loading. You already asked this question before. Add an id to the section then apply a top padding to it.

    Best regards,
    Ismael

    in reply to: Full width submenu with transparent header #476228

    Hi!

    It’s not working because “#top” is also the id of the body tag. We updated the code above.

    Best regards,
    Ismael

    in reply to: Layer Slider text shows up after click or scroll #476220

    Hi!

    The text display instantly on first load. I didn’t have to click it. Tested on Chrome, Windows 7. Which browser are you using?

    Regards,
    Ismael

    in reply to: Animation not working on galeries #476218

    Hey!

    I checked the site and tried to login but both links are not working. I’ll ask the rest of the support team to access the site.

    Cheers!
    Ismael

    in reply to: Blog Display on Hompage #476217

    Hi!

    Thank you for the info.

    Try to add a left padding to the entry content container:

    #top .fullsize .template-blog .post .entry-content-wrapper {
      padding-left: 120px;
    }

    Cheers!
    Ismael

    in reply to: Main menu left side #476215

    Hey!

    I’m sorry but you can’t enable the top bar or header_meta container if you set the header to left or right sidebar. However, you can modify the includes > helper-main-menu.php file directly if you want to create a new container manually.

    Regards,
    Ismael

    in reply to: VERY Slow Admin Back-End #476212

    Hi!

    Looks like the envato api is a bit unsteady. Unfortunately, this is not something we can fix on our end. Let’s hope that envato fix this issue immediately. We will close this thread for now. If you’re still having this issue, feel free to open a new thread.

    Regards,
    Ismael

Viewing 30 posts - 46,441 through 46,470 (of 66,052 total)