Forum Replies Created

Viewing 30 posts - 48,451 through 48,480 (of 66,052 total)
  • Author
    Posts
  • in reply to: Slow Loading Site #433947

    Hi!

    @lerama: Thanks for sharing. Hosting plan do have a huge impact regarding page speed. Availing the most affordable plan is really not advisable especially when you’re using WordPress.


    @pablo
    : Install cache and minify plugins and make sure that images are fully optmize:

    http://wordpress.org/plugins/bwp-minify/
    http://wordpress.org/plugins/wp-super-cache/

    I noticed that the site is loading inside a frame. Why is that? It will disable the responsive nature of the site.

    Regards,
    Ismael

    in reply to: Mobile Menu Problem #433946

    Hey!

    You can disable the Hide Mobile Menu Submenu Items option on Enfold > Header > Mobile menu to display all menu items by default including the sub menu.

    Regards,
    Ismael

    in reply to: Image cropping in blog grid #433944

    Hi dm!

    Thank you for using Enfold.

    Use this to resize the image:

    .avia-content-slider .slide-image, .avia-content-slider .slide-image img {
      width: 100%;
    }

    Best regards,
    Ismael

    in reply to: Image overlay on hover #433941

    Hey!

    Please use this to remove the image overlay:

    span.image-overlay {
      display: none !important;
    }

    Regards,
    Ismael

    in reply to: widget facebook does not appear chrome and safari #433939

    Hey!

    Are you sure that this is the correct facebook page?

    https://www.facebook.com/pages/JEAN-NOEL-INFORMATIQUE/146095742130758

    I tried to access it but it’s not available.

    Regards,
    Ismael

    in reply to: Extra space? #433929

    Hi brandybrand!

    Thank you for using Enfold.

    The actual website url is missing. Please post it here. Did you edit any theme files? Or add any modifications in the theme?

    Best regards,
    Ismael

    in reply to: Adding code above category posts & posts #433927

    Hey!

    You can use imgur or dropbox if you want to post a screenshot. You can limit the size of the widget by placing it inside a container with a custom class attribute. Something like this:

    <div class="limit-width">
    WIDGET HERE
    </div>

    Add the css code in the Quick CSS Field:

    .limit-width {
    width: 50%;
    }

    If you’re not sure what to do, please hire a freelance developer to help you add a custom widget above the archive pages.

    Cheers!
    Ismael

    in reply to: Menu benath layerslider #433925

    Hey!

    Menus are commonly displayed right below the header or either side of the page, not below the slider. And if a website does have a menu below the slider, it is usually a sub or support menu, not the main menu. Anyway, you can post that request here: https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Ismael

    Hi!

    WordPress updates should not delete any of the entries or pages. Please ask your hosting provider to restore the site. We will test the WordPress 4.2 on our installation and report back to this thread immediately.

    Best regards,
    Ismael

    in reply to: Colour Section / Layer Slider options #433920

    Hi!

    Looks like you don’t have the latest version of the theme that’s why it is breaking. Please update the theme to 3.1.3 to make it compatible with the latest version of WP.

    Cheers!
    Ismael

    in reply to: Menu creation disappear when activating Enfold (v2) #433916

    Hi!

    Please try to switch to the default themes. Delete the menus then switch again to Enfold. Re-create the menu from scratch. Might have to do with a broken or corrupted menu item as described on the previous post:

    I did reproduce the menu issue on my end, it was happening due to menu corruption. I fixed it, you should be able to access now:

    I’ll ask Josue to check it.

    Regards,
    Ismael

    in reply to: Page title and breadcrumb conflict #433915

    Hi!

    Use this:

    .title_container .breadcrumb {
      position: relative;
      right: auto;
      top: 0;
      margin-top: 0px;
      padding-bottom: 8px;
      overflow: hidden;
      left: -2px;
    }

    Regards,
    Ismael

    in reply to: font size menu problem #433910

    Hey!

    The code should decrease the padding of the mega menu title. Don’t use the mega menu option if you want to create dropdown menu. Please remove browser cache then reload the page.

    EDIT: It’s not working because the > symbol is automatically converted. What is the text editor that you’re using?

    http://www.regalosbajoprecio.com/

    Regards,
    Ismael

    in reply to: How to control padding/margins on avia columns #433908

    Hi!

    It should be:

    .page-id-XX .column-top-margin {
    margin-top:0px;
    }

    Best regards,
    Ismael

    in reply to: Background color of specific menu item #433907

    Hey!

    Use this:

    li#menu-item-149 a .avia-menu-text {
      background: red;
    }

    Please refer to this link on how to grab the correct menu selectors: http://kb.oboxthemes.com/articles/how-to-get-css-styles-for-elements/

    Cheers!
    Ismael

    in reply to: Updated theme sidebar not showing #433905

    Hey!

    Note that the color section, in this case, the portfolio grid, will push the sidebar below or underneath it. And since you don’t have any content below the portfolio grid (section) it doesn’t display the sidebar. I place the portfolio grid element inside a 1/1 column layout to make sure that it doesn’t create any section.

    Best regards,
    Ismael

    in reply to: WPML and custom css #433903

    Hi!

    It works on our installation. Make sure that you place the code below line 16 on functions.php. Did you select the fonts in Enfold > General Styling fonts panel?

    Regards,
    Ismael

    in reply to: Column Problem #433900

    Hey!

    Did you add any html tags inside the page? Make sure that you close them properly. The section with the issue is outside the wrap_all container. It should be inside. Add this in the Quick CSS field to fix the columns temporarily:

    @media only screen and (max-width: 767px) {
    .responsive .flex_column {
      width: 100% !important;
      margin-left: 0;
    }}

    Check the page and look for any unclosed html tags.

    Best regards,
    Ismael

    in reply to: Social Icons and Phone Info in main menu and responsive #433898

    Hey acbrent25!

    Thank you for using Enfold.

    Remove all css modifications then go to Enfold > Header > Extra Elements then set the Header Social Icons settings to “Display in main header area”.

    Best regards,
    Ismael

    in reply to: Masonry Gallery – Images Stacking On Top Of Each Other #433895

    Hey!

    Thank you for the login details but I think you forgot to set it as admin so we can’t edit anything. Please check the user rights. Anyway, please remove the first auto resize function then replace it with this:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    	}, 2000);
    	
    	$(window).load(function () {
    		setTimeout(function() {
    			clearInterval(int);
    		}, 5000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    This will trigger the resize event every two seconds and force the gallery items to adjust their position. It will stop after 5 seconds the page has been fully loaded. I hope it fix the issue.

    Cheers!
    Ismael

    in reply to: Full Screen Slider Reduce Height Javascript #433882

    Hi!

    Hmmm.. The caption alignment looks ok when I checked. What is the screen resolution of your monitor? Maybe this will do:

    div#full_slider_1 .slideshow_align_caption {
      position: relative;
      top: -30%;
    }

    Best regards,
    Ismael

    in reply to: Updating image urls in text box in portfolio items #433280

    Hey!

    It is a text block. You can manually edit the url.

    Cheers!
    Ismael

    in reply to: Image overlay on hover #433279

    Hey!

    You can add an image in the content property. Please refer to the link above, look for the url value.

    http://www.w3schools.com/cssref/tryit.asp?filename=trycss_content_url

    .av-masonry-outerimage-container:hover .av-masonry-image-container:before {
      content: url(smiley.gif);
      display: block;
      background: red;
      width: 100%;
      height: 100%;
      z-index: 5000;
      position: absolute;
    }

    Best regards,
    Ismael

    in reply to: Question before upgrading to Enfold #433277

    Hey!

    Do you want to remove other parts of the posts in archive or category pages and leave the title? Add this in the Quick CSS field:

    .archive.category .entry-content, .archive.category .entry-content-header .post-meta-infos {
      display: none;
    }

    Cheers!
    Ismael

    in reply to: Right side bar Restaurant One Page theme #433274

    Hey steviger!

    Thank you for using Enfold.

    Note that the color section is set to full width and it will push the sidebar underneath. Try to use the Fullwidth SubMenu instead or don’t use the color section to add the content.

    Best regards,
    Ismael

    in reply to: Problem saving a page #433272

    Hi PhilGiles!

    Thank you for using Enfold.

    Please give us a link to the website. We need to inspect it. Make sure that you’re running Enfold 3.1.3 on WordPress 4.1.1. If possible, deactivate all plugins then test the page again.

    Cheers!
    Ismael

    in reply to: mobile menu for desktop and adjustments #433270

    Hi Simplify!

    Thank you for using Enfold.

    Add this in the Quick CSS field:

    @media only screen and (max-width: 2600px) {
    .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide {
    display: block;
    }
    
    .responsive .av_mobile_menu_tablet .main_menu {
    display: none;
    }
    
    .html_mobile_menu_tablet #mobile-advanced {
    display: block;
    width: 20%;
    right: -20%;
    }}

    Make sure that you set the Header Mobile Menu activation setting to the second option.

    Regards,
    Ismael

    in reply to: Enable Previous and Next Arrow on blog post #433264

    Hey!

    We really cannot answer that with certainty. Debugging the issue will take time so it’s better if you hire a freelance developer to fix it. Please contact codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: How to show post images in the search results #433263

    Hi!

    Use this to make the font size bigger:

    .template-search .entry-content-wrapper .post-title {
      font-size: 25px;
    }

    There is no special script to keep the images from loading automatically. I think it’s just a delay.

    Cheers!
    Ismael

    in reply to: Using a custom shortcode inside the editor #433261

    Hey!

    Thank you for keeping Enfold as your theme of choice but, regretfully, we cannot provide support for every third party plugins or scripts available out there because there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author. Anyway, I’ll ask rest the of the support team if they have any idea.

    Thank you for your understanding.

    Regards,
    Ismael

Viewing 30 posts - 48,451 through 48,480 (of 66,052 total)