Viewing 30 results - 210,061 through 210,090 (of 244,608 total)
  • Author
    Search Results
  • #335875

    In reply to: Issue with slider

    Hey Gurify!

    Thank you for using Enfold.

    You have this code on Quick CSS:

    @media only screen and (max-width: 767px) {
    .avia-slideshow-inner {
    height: 250px !important;
    }
    }

    You can remove that or replace it with this:

    @media only screen and (max-width: 767px) {
    .avia-slideshow-inner, .avia-slideshow-inner li, .avia-slideshow-inner li img {
    height: 250px !important;
    }
    }

    Unfortunately, this will distort the images.

    Best regards,
    Ismael

    #335872

    Hi Voilaah!

    Thank you for using Enfold.

    That function is for the Product Hover meta box. I’m sorry but you can’t use the advance layout builder for single product pages. Please use the shortcode wand for additional content.

    Best regards,
    Ismael

    #335868

    In reply to: Full Width Easy Slider

    Hi Zaccc!

    Thank you for using Enfold.

    You can remove the title of the actual image on Media > Library panel or add this on functions.php:

    function remove_slide_title(){
    ?>
    <script>
    jQuery(window).load(function(){
    	var slidewrap  = jQuery('.avia-slide-wrap');
    		jQuery(slidewrap).each(function(index, element) {
                jQuery(this).removeAttr('title');
            }); 			
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_slide_title', 10);

    Regards,
    Ismael

    #335865

    Hi Edeenreich!

    Thank you for using Enfold.

    Unfortunately, we don’t use team viewer. If you can transfer the site on a live domain, we’ll be happy to look. Usually, we tell users to deactivate the plugins. See if that changes anything. Make sure that you’re running Enfold 3.0.1 on WordPress 4.0.

    Best regards,
    Ismael

    #335862

    Hey MeisDesign!

    Thank you for using Enfold.

    W3 Total Cache have minify settings enabled by default. You can disable the minify settings or install WP Super Cache. Use the default settings. If you’re looking for a minify plugin, use BWP minify. Add this on functions.php to exclude css files:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom', 'avia-layout');
        return $excluded;
    }

    Cheers!
    Ismael

    #335861
    Leislmott
    Participant

    Hi,

    Before updating to 3.0.1 I had the transparent menu set as white (in the Transparent menu options section of the Enfold panel). I see the setting is still there since the upgrade, however the menu has now gone grey.

    Is there some other place I need to change this setting?

    Also, there is a white box that sits directly behind the menu items that is slighlty less transparent than the transparency background. Any idea how to get rid of that?

    Thanks,

    #335849

    That’s normal i put the old enfold version (i can’t display a broken website)

    #335848

    Topic: Simply Instagram Feed

    in forum Enfold
    joesayegh
    Participant

    Hi, I’m using a plugin called Simply Instagram.
    It uses the old “pretty photo” lightbox.
    The trouble is, Enfold comes with a better, more modern lightbox which I much prefer.
    So the plugin interferes with the theme.
    For example, if you click on one of the instagram photos in the footer of the website, 2 (!) light boxes open
    How can I disable pretty photo please?

    #335844

    Hi lolo13!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .html_header_sidebar .logo { padding: 20px; }

    Cheers!
    Yigit

    #335843
    lolo13
    Participant

    My logo area is on top left corner like on the demo. I would like to reduce the padding on top and underneath the logo.
    thank you

    #335841

    In reply to: Heading and menu

    Hi Eric

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .logo img {
    display: none;
    }

    and then add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
    	$sub .= "<strong class='logo-title'>Company Name</strong>";
    	return $sub;
    }

    Unfortunately, it is currently not possible to use widget within header area. Feel free to request it here – https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Yigit

    Hey!

    Please go to Enfold theme options > Header > Header Size and set it Custom Pixel value and then choose to display around 100px

    Best regards,
    Yigit

    This reply has been marked as private.
    #335829

    In reply to: event calender

    Hey studioinktvis!

    You can try this one – http://tri.be/shop/wordpress-events-calendar/
    It is fully compatible with Enfold

    Regards,
    Yigit

    #335828
    antoinebro
    Participant

    H, i update my enfold version because the builder was not working.
    So i tested it on local (WP + Enfold latest version) it worked fine.

    But when i uploaded the new version i get a black screen on Home page. The code don’t load after the header.

    I tried to put define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ ); in WP-config.php

    but is not working.

    Can you help me please ?

    #335827

    Hey migduvednok!

    You can use Iconlist element to do so. Please see – http://kriesi.at/documentation/enfold/portfolio-item/intro-to-the-advanced-layout-editor/

    Cheers!
    Yigit

    #335823

    In reply to: MapifyPro question

    Hi, I was just browsing the Forum. I asked about the width of the tooltip and the guys gave me this so I could make them larger and loose the scrollbar:

    <div style=”overflow: auto; width: 175px; height: 175px;”>
    Enter the text here that you wish to show in the tooltip</div>

    My tooltips also have a heading in bold which link to another page on the site so mine now look like this:

    <div style="overflow: auto; width: 175px; height: 175px;"><a href="/services/pagename/"><strong>pagetitle</strong></a>
    Enter the text here that you wish to show in the tooltip</div>

    I also use the latest version of Enfold which has a fullwidth google map element and works great.
    Hope this helps.
    H

    #335820

    Hi Swedfit!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .home .content { padding-top: 0; }

    You have a text block element below your accordion element, please remove it as well

    Cheers!
    Yigit

    #335817

    In reply to: Team Members

    Hey trackvets!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    h3.team-member-name, .team-member-job-title { text-align: center; }
    h3.team-member-name { font-size: 16px; }

    Regards,
    Yigit

    #335816

    In reply to: wp4 + enfold bug?

    Hi Morgantar! :)

    Welcome back! :) I guess it would be the best if you create a testing site first and update theme, apply the changes you have made and when all is well, you can move it to main server. Trying to troubleshoot an issue on old version of Enfold running on old version of WordPress would be impossible at the moment :/

    Regards,
    Yigit

    #335813

    Hey Jason!

    Please feel free to request such feature here – https://kriesi.at/support/enfold-feature-requests/
    Unfortunately, you are going to need to hire a freelance developer for further customization.

    Cheers!
    Yigit

    #335798

    Hi Antonio!

    Tried to use the site on my iPhone 6 now on several occasions during the last 2 days and it always seems to work fine for me so not sure what exactly is happening here :/

    Your last post didnt mention it but I guess you are still encountering those issues=

    As for optimization: If you want to use the easiest to use caching plugin I would recommend wp-supercache. Really works well for me on kriesi.at and I also use it for the enfold demo. It has quite a few options but you actually dont need to change any of them. The plugin usually works very well out of the box :)

    Cheers!
    Kriesi

    #335797
    fusiontechinc
    Participant

    I currently have the Enfold theme set up on my site and am trying to add Google Analytic event tracking coding to various links for product guide downloads. Whenever I set the code and click save on the text box in the Advanced Editor, it strips out the code. It will save everything except the event tracking code.

    Is there something I need to do to keep the codes? I need to be able to track these downloads.

    Here is the link to the site: http://www.ftiinc.org

    #335792
    damian2013
    Participant

    Hello
    I have a problem. I bought the theme enfold: Unfortunately I can not install zip_folder. In contrast, when it is unzipped it seems to be empty.
    Can you check?

    #335772

    Hi!

    Gravity Forms is meant to be used as a replacement of the Enfold built-in form.

    Cheers!
    Josue

    #335771

    In reply to: Portfolio Problemo

    Hiya!

    Sorry about that, I meant to specify portfolio system. Even though Ajax is nice, we kind of prefer our old one and didn’t know who to look for in implementing our old coding over the Enfold Ajax coding into custom CSS. :(

    Thanks so much again,

    Indya

    I removed all custom css that was affecting the header, nav, content padding, etc, but the highlighting is still off. It starts okay at the first section, but gets successively worse with each one.

    Ideally, I wouldn’t need to add any custom css and would be able to modify the spacing on all elements (including the menu within the header). Enfold allows me to change the header height, but not where the menu sits within it (ie. it’s always right at the bottom no matter the header height).

    • This reply was modified 11 years, 6 months ago by dmoz.

    Hey Eckhard!

    I’m not sure if this is possible with how the dynamic stylesheet works right now, if you check at the generated selectors (http://screencast.com/t/VvsISYzsrX) you’ll note that they make use of container classes like main_color, header_color, socket_color, etc. the problem is that the Magnific Popup element appears outside of these containers (http://screencast.com/t/VvsISYzsrX).

    Maybe a solution would be to add a new color scheme (PopUp Colors?) to the theme options, feel free to request something like that here.

    Regards,
    Josue

    #335756

    Hi!

    Please add the code Ismael posted here: https://kriesi.at/support/topic/wpml-menu-item-not-showing/#post-321008 to the child theme (or enfold) functions,php file. Otherwise Enfold will add the theme language switcher to the menu and WPML will add the default language switcher to the menu too.

    Cheers!
    Peter

    #335753
    realmgic
    Participant

    Hey,

    I’m new to Enfold and been mostly using it on my development environment.

    I’m using a boxed layout with sidebar that are sometime on the right and sometime on the left (I’m using left sidebar for English and right sidebar for Hebrew).
    I noticed that when I use the left sidebars the layout get weird – some elements are not placed correctly and I was wondering how to fix it.

    Here are couple of examples:
    on the right sidebar, the reply counter is connecting with the sidebar. the reply box is in the middle of the content area:

    on the left sidebar the reply counter is in the middle and the reply box is off to the right:

    How can I solve this?

Viewing 30 results - 210,061 through 210,090 (of 244,608 total)