Forum Replies Created

Viewing 30 posts - 25,921 through 25,950 (of 34,867 total)
  • Author
    Posts
  • in reply to: Cache size #992676

    Hey Max,
    I have not heard of any such limits, I searched for some recommendations but didn’t find anything solid to report back. I would say that you should be fine. As far as caching your product pages, I don’t see any issues with caching them as long as you are clearing them after updating your pages. Or that they are auto cleared.

    Best regards,
    Mike

    in reply to: New Enfold Install – Layerslider not working #992667

    Hi,
    Glad Victoria could help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: images disappear from pages when changing page. #992666

    Hey FinHenri,
    I tried to take a look at your site, but when I login I’m greeted with a “maintenance page”, as if the login is not working. But I receive no errors.
    Is your site blocking some IP’s? Please check.

    Best regards,
    Mike

    in reply to: Tab Section Initial Open- None #992662

    Hey tlchase,
    The “tab section” element shares the content section with all of the tabs, where in the “tabs” element each tab has it’s own content section. In other words, if the option to have no initial open was available, you would still have a big blank area on your page.
    If you are ok with this, you can try setting your initial open to the first tab, then try this code in the General Styling > Quick CSS field to hide it’s content:

    .av-active-tab-content.__av_init_open {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: How to move logo to the left on the site? #992654

    Hi,
    Glad Victoria could help, thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Here is the new slideshow.js file, it will be in the next update.
    Please keep a backup of your current file, it’s good practice.

    If this doesn’t help, Please open a new thread so we can assist, and include your admin login and ftp access in the Private Content area, but as this is not your thread your login info will not be private.

    Best regards,
    Mike

    in reply to: Issues on mobile #992648

    Hi,
    To change the mobile menu items to gray and the background to pink, Please try this code in the General Styling > Quick CSS field:

    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a {
    color: gray !important;
    }
    .av-burger-overlay-bg {
        opacity: 0.9;
        background: pink !important; 
    }

    As for your solved issue, at this point it would be hard to go backwards to figure out why, but typically these kind of issues come from unclosed html tags in the elements. If you are not adding tags to your element titles or content boxes, then you should not see these issues.
    Also if you are going to use the debugger to copy the shortcode, please be careful, because loosing the wrong ] symbol will cause the same issues.
    I hope this helps :)

    Best regards,
    Mike

    in reply to: Menu, Transparent Bar #992645

    Hi,
    It is possible to add a link using standard html and pasting it into the caption area, please give this a try.
    I wrote the css for the bar to only work on the one page, to prevent conflicts. But it is easy to change to another page, I will show you how.
    So at this point all you need is a blue link, and the css to work on the homepage?

    I will look at the other thread and reply there.

    Best regards,
    Mike

    in reply to: Question About Adding a Child Theme #992643

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Moving the categories to the end of the post? #992641

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Social Share Buttons+ Centering Text in Sidebar #992639

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Unordered List Doesn't work in Timeline #992637

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Moving the categories to the end of the post? #992397

    Hi,
    If you would like to try a different approach, I tested this javascript on my localhost with the blog set to “Elegant” in the theme options. As long as you have the “blog-author” showing in your meta, which I see you do, this will move the categories below the date & author and leave the title at the top.
    It will work for archive pages and single pages.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function move_categories(){
      ?>
      <script>
      jQuery(window).load(function(){
    jQuery( '.single .post-entry,.archive .post-entry' ).each(function() {
    jQuery( this ).find( '.blog-categories' ).insertAfter( jQuery(this).find('.blog-author') );
    });
    });
      </script>
      <?php
      }
      add_action('wp_footer', 'move_categories');

    that is after you restore the other file so the categories shows at the default top location.

    Best regards,
    Mike

    in reply to: arrange icons in line #992367

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: arrange icons in line #992174

    Hi,
    I’m sorry, I gave you the wrong code. Please try this instead:

    .af_social .av_font_icon {
    display: inline-block !important;
    }
    .af_social {
    text-align: center !important; 
    }

    Best regards,
    Mike

    in reply to: Menu, Transparent Bar #992172

    Hi,
    Sorry for the late reply, I believe you can accomplish this by adding your text to the caption for the slider, such as in the above example.
    For a better example I created a test page on your site for you to see what I mean. Please look for a draft page called “slider-test”
    Please see screenshot in Private Content area.
    If this isn’t what you are trying to do, we can try to think of anther solution.

    Best regards,
    Mike

    in reply to: Full screen slider / image with footer #992161

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Social Share Buttons+ Centering Text in Sidebar #992160

    Hi,
    I see that the social icons are still off, please try this css in the General Styling > Quick CSS field or the WordPress > Customize > Additional CSS:

    #top .avia-builder-widget-area #text-2.widget ul {
        margin: auto !important; 
        width: 70% !important; 
        float: none !important; 
    }
    

    Please clear your browser cache and check.
    Please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Portfolio Grid Classes #992158

    Hi,
    Glad Victoria could help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Question About Adding a Child Theme #992157

    Hi,
    Glad to help :)
    unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Unordered List Doesn't work in Timeline #992156

    Hi,
    I took a look and found that the css conflict, I tried to login to add the correcting css but found the login didn’t have admin rights.
    Please try this code in the General Styling > Quick CSS field, or the WordPress > Customize > Additional CSS:

    .av-milestone-contentbox .av-milestone-content ul li {
        display: list-item !important; 
    }
    .av-milestone-contentbox .av-milestone-content ul li:first-child {
        margin-left: -4px !important; 
    }

    Then please clear any cache plugin and your browser cache and check.
    Expected results:
    2018-07-31_214932

    Best regards,
    Mike

    in reply to: One more HTML #991911

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Embedding Comodo Seal in Footer #991910

    Hi,
    Ok I have installed it for you, but I believe you will need to do something in your “Comodo” account, because when you click it, it says “IdAuthority Credentials not available for this site”
    2018-07-31_070542

    Best regards,
    Mike

    Hi,
    Glad we could help, we will leave this open should you find the same error again in your audit.

    Best regards,
    Mike

    in reply to: Question About Adding a Child Theme #991799

    Hi,
    Ok, I got your child theme working correctly now, with the theme settings and the custom functions.
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Typically this is caused by unclosed html tags in the page, but in this case I was unable to find any. Do you have any other pages performing like this? I could take a look at them too.

    Best regards,
    Mike

    in reply to: Add social and a button before burger #991795

    Hi,
    I took a look at your link above in the Private Content area, but the menu, and button doesn’t look like the same setup as in your image. Please link to the live site so we see the current placement.

    Best regards,
    Mike

    in reply to: Layerslider white line on left #991794

    Hi,
    If you can change the color of the line by changing the main background color, wouldn’t changing it to black solve? Or you could try going to your slider in the layerslider and set a black background color.
    2018-07-30_220102

    Best regards,
    Mike

    in reply to: Embedding Comodo Seal in Footer #991791

    Hi,
    We could assist with some custom functions to do this, or you could use the plugin Header and Footer Scripts which will do the same and allow you to easily manage it in the future.
    If you would like us to assist, please check the login in password above as I was unable to login.

    Best regards,
    Mike

    Hi,
    Unfortunately there in not. Perhaps there is a menu plugin that can do this with shortcode that we can use in the same function above.

    Best regards,
    Mike

Viewing 30 posts - 25,921 through 25,950 (of 34,867 total)