Forum Replies Created

Viewing 30 posts - 14,341 through 14,370 (of 34,615 total)
  • Author
    Posts
  • in reply to: tab section heading alignment #1305426

    Hey John,
    Thank you for your patience, and the link to your page, since you increased the font size you will also need to change this css to re-center the text:

    .av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
        width: 130px !important;
    }

    After applying the css, please clear your browser cache and check.
    The default is 90px & I just experimented until it looked good, feel free to adjust.
    This also helps with your mobile view, but please note that the element is not meant to show all tabs at mobile, it moves along as the tabs are clicked.

    Best regards,
    Mike

    in reply to: Demo Import is Not Working #1305423

    Hi,
    Glad to hear this helped and sorry it was such a pain, there seems to be some advanced setting with the higher PHP versions on GoDaddy, maybe on some other webhosts, but not the ones we have access to. I also noticed that Godaddy seems to disable PHP ZipArchive Extension by default now, this is a new move for a very commonly used extension.
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Have a drop down from an image. #1305422

    Hi,
    Thank you for your patience and the link to the example, unfortunately, we don’t have an element that works like this but I put together a rough example that may work for you using our elements and a little jQuery:
    2021-06-12_160555.jpg
    the backend:
    2021-06-12_161323.jpg
    So each column has a custom class such as: .show-one, .show-two, .show-three, .show-four then place your content.
    Each text element below that will be your “Drop Down” will have the corresponding custom class: .one,.two,.three,.four please note that in the custom class fields you do not actually use the class dots:
    2021-06-12_163250.jpg
    Anyways, for this example I used a code block element to add the jQuery:

    <script>
    (function($){
      $(document).ready(function(){ 
        $('.one,.two,.three,.four').hide();
        $('.show-one').click(function(e){
        e.preventDefault();
        $('.two,.three,.four').hide();
         $('.one').toggle();
        });
        $('.show-two').click(function(e){
        e.preventDefault();
        $('.one,.three,.four').hide();
         $('.two').toggle();
        });
        $('.show-three').click(function(e){
        e.preventDefault();
        $('.one,.two,.four').hide();
         $('.three').toggle();
        });
        $('.show-four').click(function(e){
        e.preventDefault();
        $('.one,.two,.three').hide();
         $('.four').toggle();
        });
        });  
    })(jQuery);
    </script>

    Please note the <script> tags in the code.
    That is the basic idea, naturally you can style it a lot more with css to add hover effects and padding, border color, etc.

    Best regards,
    Mike

    in reply to: post slider element #1305419

    Hey srossbach,
    Thank you for your patience, and for the logins, for your Blog site, your posts are created with the Advanced Layout Builder, so to show the excerpts you will need to manually enter them into the excerpt field:
    2021-06-12_142748.jpg
    As for your other site, the reason that it is slow in my tests is the First Byte Time this is how long it takes your webserver to respond, typically this should be 200ms, your server is taking 2.325s, after that, it’s only taking the site 1.244s to load. Please see the report in the Private Content area. Only a faster web server will fix this.
    Unrelated: I also see that you are using v4.7.6.4 we are now at v4.8.3

    Best regards,
    Mike

    in reply to: Hide Pages From Public View or Search #1305417

    Hey nvancelvc,
    Thank you for your patience, you can do this by changing the Status to draft, you can also use the Bulk Actions to do this to multiple pages at once:
    2021-06-12_135040.jpg
    Also, check that the demo “posts” & “products” are changed so they don’t show.

    Best regards,
    Mike

    in reply to: Problem: Featured Image Too big #1305416

    Hey smuzzamil,
    Thank you for your patience and for the login, this image is in portrait, that is it is higher than wide, try uploading a landscape version of it that is wider than high, or you can crop it to about 1/3. I did an example for you please check.

    Best regards,
    Mike

    Hi,
    How are you achieving the TOC, it doesn’t look like one of our elements?

    Best regards,
    Mike

    in reply to: Logo Centered split menu is not responsive #1305411

    Hi,
    Sorry but “zoom” is not the correct function to use in testing, there are no css or javascript controls for recognizing a browser’s “zoom” level, it is a personal user preference.
    For testing different browser sizes, aka browser resolution, please use the dev tools (F12 on Windows), responsive mode, such as the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: link hover color not working #1305410

    Hi,
    Thank you for your patience and for the login, taking a look at the sections on your Offerings and Speaking pages I found two issues:
    2021-06-12_112111.jpg
    In the first issue with the color of the link on hover you had this css in your Quick CSS near the top overriding the theme options
    2021-06-12_112519.jpg
    I commented it out and removed Rikard’s css and now the “FAQs” links show thge correct color on hover.
    For the second issue your text block elements with “Return to Page Overview” links are using a custom font color, the same as you had defined in your theme options
    2021-06-12_113757.jpg
    this is not nessary as it was already defined, and by doing so it overrides the theme options for the hover state also, so to correct this please cheange to “default”:
    2021-06-12_114057.jpg
    I did this you you in the “Coaching and Mentoring” section to demonstrate, please do this in the rest of the sections if you wish.

    Best regards,
    Mike

    Hey Alessandro,
    Thank you for your patience and thanks for the link and screenshots, the h5 in the “Social share” element already seems to be a “p”, so I assume you already figured this one out, for the h2 titles on your blog page try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script() { ?>
        <script>
    (function($) {
      $(document).ready(function(){
        function replaceElementTag(targetSelector, newTagString) {
          $(targetSelector).each(function(){
            var newElem = $(newTagString, {html: $(this).html()});
            $.each(this.attributes, function() {
              newElem.attr(this.name, this.value);
            });
            $(this).replaceWith(newElem);
          });
        }
        replaceElementTag('h2.post-title.entry-title', '<p></p>');
      });
    }(jQuery)); 
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Custom Fonts not uploading #1305255

    Hey kubera,
    Thank you for your patience and for the login, but it is not an admin login so we can’t see any of the settings, your error sounds like you don’t have the PHP ZipArchive Extension activated on your server, you will probably have to ask your webhost to do this for you. You can easily check this by going to WordPress > Dashboard > LayerSlider > Options and click “System Status” and look under “Server Settings”
    ensure_your_web_server_has_the_PHP_ZipArchive_Extension_enabled.jpg

    Best regards,
    Mike

    in reply to: Demo Import is Not Working #1305251

    Hi,
    Thank you for your patience, please try downgrading your PHP version to 7.0 or the lowest 7.x you can go, I recall a Godaddy user saying this helped them, after the import they upgraded the PHP version with no issue. I also note that your server doesn’t have PHP ZipArchive Extension activated, please do this or get GoDaddy to do this.
    It looks like you have a partially created site, but when you import the demo you will be losing this as the demo will overwrite your site. Also, you should not have plugins installed before importing the demo, especially caching plugins.
    You could export your pages, posts, and portfolio items, but I recommend removing all of your plugins and resetting your site with the WP Reset plugin, especially after a failed import, and trying again with PHP 7.x & the ZipArchive Extension activated.
    If this fails please leave the PHP downgraded and include FTP access and I can try a manual import, but I will have to reset your site, so please export anything you want to save.

    Best regards,
    Mike

    in reply to: Adobe Fonts in Enfold #1305076

    Hey langpj,
    Thank you for your patience, I’m not sure if Adobe Web Projects is something specific, but you can add any font in the Enfold Theme Options > Import/Export > Custom Font Manager
    Enfold_Theme_Options_Import_Export_Custom_Font_Manager.jpg
    that is in the ttf, eot, woff, woff2 formats, typically add the fonts to a zip file and upload via the option, if you downloaded a font zip file try extracting the specific font and re-zipping, as some font zip files contain other files and directories that might cause issues. Also, ensure your web server has the PHP ZipArchive Extension enabled as it is needed to extract zip files. You can check this by going to WordPress > Dashboard > LayerSlider > Options and click “System Status” and look under “Server Settings”
    ensure_your_web_server_has_the_PHP_ZipArchive_Extension_enabled.jpg

    Best regards,
    Mike

    in reply to: Category image #1305059

    Hi,
    Thank you for your patience, I’m not sure which plugins you mean but I found these in the WordPress repository:
    Categories Images
    Custom Category Image
    Category and Taxonomy Image
    Perhaps one of these will help.

    Best regards,
    Mike

    in reply to: Full width 'title background color' in color section #1305053

    Hi,
    Thank you.

    Best regards,
    Mike

    Hi,
    Your screenshot shows 612kb in 41 requests in 3.13s, I’m not sure how moving the load order would help but please check your theme options and disable the lazyloading in the performance options:
    2021-06-10_054415.jpg
    Perhaps you can Preload Images to achieve this?
    As for the button on your header, my thought was to have the image include the button and have the whole image a link, people might think they are clicking a button but actually anywhere they click will work.

    Best regards,
    Mike

    in reply to: Link to portfolio categories #1305046

    Hi,
    The portfolio items element is found at \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php & portfolio.js but that is only for the inner items the page template is found at \wp-content\themes\enfold\archive.php but that is the template for all archive page types. To remove the archive sidebar please see the theme options > sidebar settings:
    2021-06-10_045234.jpg
    To modify the lightbox popup you would write some css to target the image with the class .mfp-img with either height or width like this:

    img.mfp-img {
      width: 80vw !important;
    }

    but please note that it is possible to distort the image so you may want to balance the height and width, and you probably will not want to go 100% width because closing the image is often done by cliking away from the image so you will want to leave a edge.

    Best regards,
    Mike

    in reply to: Adjust vertical space/gap between Grid Rows? #1305039

    Hi,
    Glad to hear this helps, I have submitted this to the dev team for review so perhaps in the future there will be a theme option, I will go ahead and close this thread, thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Adjust vertical space/gap between Grid Rows? #1304861

    Hi,
    Thank you for the feedback, I did some further testing with gridrows, which are full-width elements, and found that any element that you add between the gridrows creates the div with an ID after_submenu_x, such as the text element and special heading element.
    So while the div ID could or should be after_grid_x the div must be present because it is the container_wrap after a fullwidth element, each div after a fullwidth element is structured like this: container_wrap > container > content > etc.
    2021-06-09_052807.jpg
    for these the default 50px padding is typically desired so the elements are not on top of each other, if you try a text element or special heading element after a fullwidth element you will see that it is natural to the Enfold layout. So I would not say that this is a bug, but I can see with the Whitespace Separator element this may not be desired because the Whitespace Separator itself is typically used to create a certain space, this is may not true for all Separators because some are used to show a line such as the Short Separator.
    So with changing this the issue is that with css there are no parent selectors for child elements, what I mean is that is to look backwards from the Whitespace Separator to the .content class to remove the padding universally across the site would need to be done with javascript. The reason I was able to do it with css above was because I looked for a unique pattern to your situation and recommended using page IDs so not to cause conflicts, basically a custom solution.
    As I pointed out above, a solution that would probably be more commonly suggested would be to add a custom class to the Whitespace Separator element for use after full-width elements to remove the padding.
    I will submit this to the Dev Team for further review and reply when I hear from them, but for now I recommend that you use the solution above as it seems to be working for you. Let us know if you have any issues getting the solution to work for you on other pages and we will help.

    Best regards,
    Mike

    in reply to: Adjust vertical space/gap between Grid Rows? #1304638

    Hi,
    To find the page IDs you can either hover over the edit button in the WordPress backend:
    find_post_id_by_hovering_over_edit_button.jpg
    or look in the page source code, (F12 on Windows), in the body tag
    find_post_id_by_looking_in_source_code.jpg
    As for why this is happening, I’m seeing that after each grid row a after_submenu is created, but I don’t see a sub-menu, except your grid rows are links, like a menu,
    2021-06-08_073436.jpg
    each submenu div has a .content class which is effected by the layout.css rule
    2021-06-08_073600.jpg
    Another approach instead of my css could be to add a custom class the whitespace and remove the padding that way, but I believe my css is pretty sound and should not cause conflicts especially if you limit it to certain pages.

    Best regards,
    Mike

    in reply to: Background Overlay Image #1304628

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Last Updated Date To Show In Replace To Publish Date #1304626

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thanks for your feedback, I don’t do website optimization for a living, and it is a little out of scope for us, I had to look up “LCP” so with “LCP to be <2.5s and CLS <.1" I'm not sure what you are trying to say, but from the web page performance test you are looking better than most 7s sites that I see. I will have to leave the optimization & SEO to someone more knowledgeable.
    As for the CSS, the changes I made were in the Quick CSS only, sorry about moving the banner I thought I was helping, I changed the top & height for the class .background-strap
    2021-06-08_065330.jpg
    for the logo it was this:

    .av_minimal_header #header_main {
        height: 145px;
    }

    I believe it was 134px before, but the bottom of the buckle didn’t show, you could copy the Quick CSS from your live site to reset your dev site. As for sharing images you can use most any image host, I use this one, and then post the html link into your post.
    Also for your hero image, it seems that the only layer to the slider is a button, so that seems like a lot of weight, instead, you could just use the image with the button embedded, so it is all one image, and then link the whole image. This would same you from using the layerslider, I would still make two images for desktop and mobile but that would still be much smaller.

    Best regards,
    Mike

    in reply to: YouTube social icon not showing after 4.8.1 update #1304620

    Hi,

    @sump22
    I checked your site in Windows 10 with Chrome, Firefox, Edge, and your topbar & footer YouTube icons are showing correctly, I also used site-shot.com to ensure that they are available to other browsers. I’m not sure why you can not see your icon, other than something blocking it like an adblocker? I also see a FB script has an error Minified invariant #11797; Params: 113 [Caught in: Module "VisibilityListener"] perhaps FB is blocking it, or is trying to monitor the clicks and is getting a js error? Try removing all FB widgets and scripts and see if that changes for you, if it was FB it could only target some people.

    Best regards,
    Mike

    Hi,
    Thank you for your patience and thanks for the link to your site and login, when I checked your site on a Windows desktop there were a few css header, main menu, slider alignment issues, some of which were discussed above, I made a few adjustments in your Quick CSS to correct these, please see the screenshot in the Private Content area.
    But it seems that your main concern is a LCP Issue which is that your decktop site is taking longer Than 4s to load, correct?
    When I run a web page performance test on your dev site the longest test out of 3 tests is 3.2s, your avg is 2.7s and I don’t see that the slider image is loading last, it is #34 in the test
    2021-06-06_183858.jpg
    so I’m not sure what you are worried about, I don’t believe you are in any kind of Google jail, there are many SEO people that will say crazy things, try to not let them get into your head, your customers do not care what your SEO score is, they want to see your product. I hope this helps.

    Best regards,
    Mike

    in reply to: Link to portfolio categories #1304301

    Hey purmar,
    Thank you for your patience and thanks for the link to your site, as I understand your request you would like the portfolio archive page items will open either an image or video in a lightbox. To do this scroll to the bottom of your portfolio item in the backend and change the Overwrite Portfolio Link setting to Define custom link you will then see the Link portfolio item to external URL option:
    Link_portfolio_item_to_external_URL.jpg
    Then on the archive pages such as the category page, the portfolio item will open a lightbox:
    2021-06-06_170630.jpg
    This will help you link directly to a portfolio category and achieve your lightbox effect, unfortunately the sorting links in the portfolio element are not real and is controlled by javascript so directly linking is not possible.

    Best regards,
    Mike

    in reply to: Load More button on Blog homepage #1304298

    Hi,
    Thank you for your patience but as I understand your request this can be done with an added custom script, basically, you will need to add all of the elements to your page and the script will hide some of the elements on page load, then when your button is clicked the script will show the hidden elements. Please see this post for a detailed example.
    If you need further help to achieve this on your site then please create a test page on your site and create a new thread and include a recap, and a WordPress admin access in the Private Content area. Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.
    You can post a link to your new thread here so I can find it easier.

    Best regards,
    Mike

    in reply to: Vertical align menu – scrolling problem #1304295

    Hi,
    Thank you for your patience and the link to your site, I believe the issue is that when your page is scrolled and the header shrinks the nav is not adjusted to match, please try this css to correct, in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header.header-scrolled #header_main > .container .main_menu .avia-menu {
        top: 5px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Most content disappeared suddenly from my site #1304288

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here

    Best regards,
    Mike

    in reply to: mobile video controls, header width #1304286

    Hey Munford,
    Sorry for the very late reply and thanks for the link to your page.
    To set the header and the mobile video to 100% please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .responsive #top.home #wrap_all #mobile > .container,
    .responsive #top #wrap_all #header_main > .container {
        width: 100%!important;
        max-width: 100%!important;
    }
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 14,341 through 14,370 (of 34,615 total)