Forum Replies Created

Viewing 30 posts - 26,431 through 26,460 (of 34,558 total)
  • Author
    Posts
  • Hi,
    I took a look at your News page on the back end, and it’s not responding for me, but the blog page is. Perhaps dropping it would be a good choice.
    Unfortunately you can only have one login to the forum per API key.

    Best regards,
    Mike

    in reply to: Left Side Menu & Widgets #975067

    Hi,
    To add a widget area in the left sidebar menu, before the menu & after the logo, first add a header widget area with this code in your functions.php file in Appearance > Editor:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }

    Note that this is a little different that the normal header widget code, it places the widget at the top of the sidebar over the logo.
    Then go to your widgets and create the custom widget area called “header”
    2018-06-19_220438
    Then add this code to the end of your functions.php file in Appearance > Editor:

    function move_header_widget_area(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery( '.container_wrap_logo' ).each(function() {
    jQuery( this ).find( '.widget' ).insertAfter( jQuery(this).find('.logo') );
    });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'move_header_widget_area');

    it will move the widget below the logo, just above the menu.
    2018-06-19_215554
    If this doesn’t help, the code may need a little tweaking, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: HELP getting back my defualt enfold options!!!!!!! #975062

    Hi,
    Glad to hear, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Photo Gallery "Next Photo" Arrow missing #975061

    Hi,

    @web4smallbusiness
    when I check your page the gallery is not opening in lightbox, the images are opening directly.
    Please check that the Enfold Theme Options > Lightbox Modal Window option is still checked.
    Or if you are using a child theme with a header.php in it, you will need to update the header.php to the latest one, as it has changed.
    Be sure to retrieve any custom code in your header.php to add to the new one.

    Best regards,
    Mike

    in reply to: Slider buttons on mobile #975059

    Hi,
    Your child theme style.css would be the best place. I’m sure Victoria was assuming that you were not using a child theme.
    Glad to hear you are, and that the solution was a success.
    Unless there is anything else we can assist with, shall we close this then?

    Best regards,
    Mike

    in reply to: Button row #975056

    Hi,
    Glad Ismael was 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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Testimonial Content Element Makes Page Jump Up & Down #975055

    Hey ballindigital,
    I added this css to your WordPress > Customize > Additional CSS
    Please clear your browser cache and check.

    @media only screen and (max-width: 767px) { 
    #top.home .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row .avia-testimonial {
    height: 80vh !important; 
    min-height: 80vh !important; 
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 1023px) { 
    #top.home .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row .avia-testimonial {
    height: 50vh !important; 
    min-height: 50vh !important; 
    }
    }
    @media only screen and (min-width: 1024px) { 
    #top.home .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row .avia-testimonial {
    height: 30vh !important; 
    min-height: 30vh !important; 
    }
    }

    Best regards,
    Mike

    Hi,
    Thank you for the login, I got your blog page working, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    When I look at your blog & news pages the border around the posts is there, try clearing your browser cache and see if that helps.
    I also see the sub-menu on your posts.
    I do see that your news page doesn’t have the sub-menu, that is because the code above adds it to posts and not pages, try using the sub-menu element like you did on the blog page. Did you mean to have two blog pages? The blog & news look the same to me.

    As for creating a sub-menu like your example link, you can add images to the menu items by add your image code to the title box like this:

    
    <img width="80" height="80" src="https://127.0.0.1/2017demo1/wp-content/uploads/2015/07/portfolio-large-1-80x80.jpg" class="attachment-thumbnail size-thumbnail wp-post-image">

    and then align the text to middle of the image with this css:

    .av-subnav-menu .sub-menu span.avia-menu-text img {
        vertical-align: middle!important; 
    }
    #top .av-subnav-menu > li ul {
        width: 300px !important; 
    }

    2018-06-19_193606
    But it’s not exactly like you wanted, perhaps a plugin would give you the options you are looking for.

    For your last question, you can edit the theme files, but the news page is not it’s own template, it uses the page template. But using code like we gave you to add to the functions.php can be targeted to one or more pages, it’s really a better approach.

    Best regards,
    Mike

    Hi,
    I see you have a sub-menu element on your blog page, to add one to your blog post pages Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_single()) {
    		echo do_shortcode("[av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [av_submenu_item title='Menu Item 3']
    [/av_submenu]");
    	}
    }

    This will show one of your menus, if it doesn’t help please include a admin login in the private content area so we can take a closer look.
    To add a border around your blog post grid, Try this code in the General Styling > Quick CSS field:

    .slide-entry.flex_column.post-entry {
        border: 1px solid gray !important; 
        padding: 5px !important; 
    }

    Best regards,
    Mike

    in reply to: Icons not shown after URL change #974624

    Hi,
    You could, first you would need to set up WordPress
    Then you would need to set up your CORS headers
    it can be tricky and you might want to hire someone to set it up for you.
    Can I ask if your webhost has the “Domain Addon” option?
    This would be a lot easier, watch this video

    Best regards,
    Mike

    in reply to: Create Icon with YouTube Link in LightBox #974605

    Hi,
    Please try adding ?autoplay=1 to the end of you youtube link.
    If this doesn’t help, 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: How do I get support #974597

    Hey Mary,
    Are you still having problems signing in to the forum?
    I believe I just answered your post that seems to have been posted after this one?

    Best regards,
    Mike

    in reply to: Spacing between 1/2 columns not spacing correctly #974595

    Hey Steve,
    It looks like your caching / minifying plugin is giving this:

    div .av_one_half {
        margin-left: 0
    }

    Perhaps clearing it will help, otherwise please try this css in your WordPress > Customize > Additional CSS:

    @media only screen and (min-width: 767px) {
    .flex_column.av_one_half.flex_column_div.avia-builder-el-51 {
    margin-left: 6% !important; 
    }
    }

    Feel free to adjust the margin to suit, 6% is the theme standard.

    Best regards,
    Mike

    in reply to: mobile menu not showing #974585

    Hi,
    Glad Ismael was 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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: textblock is not showing properly #974584

    Hey Bonstaete,
    This looks like a plugin conflict, please try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Icons not shown after URL change #974583

    Hey shermski,
    They are not showing due to CORS policy, the font needs to be hosted on the same domain.
    I recommend moving your site to your production domain, it seems that you are mask forwarding right now, but if you click any menu item you are sent to your dev domain where the icons work.

    Best regards,
    Mike

    Hey proedgeskills,
    Try this code in the General Styling > Quick CSS field:

    #top.blog .slide-meta { display: none !important; }

    Best regards,
    Mike

    in reply to: reset to no predifined color scheme #974571

    Hi,
    We will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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

    Hi,
    What did you use to create the backup?

    Best regards,
    Mike

    in reply to: Can't import a Fontello Icon #974567

    Hi,
    Your server settings still show that the PHP Zip Archive Extension is not enabled.
    A easy way for you to check is to go to WordPress > Dashboard > LayerSlider > Options > System Status > Server Settings

    Best regards,
    Mike

    in reply to: How to reduce space at the accordion toggle #974562

    Hi,
    You can adjust the “35px” to a smaller number, in the rules above, such as “10px”
    Thee first rule is for the heading, and the second is for the content.

    Best regards,
    Mike

    in reply to: How to reduce space at the accordion toggle #974251

    Hi,
    Thank you for the screenshots, Try this code in the General Styling > Quick CSS field:

    #top.home .togglecontainer .toggler {
        padding: 0px 3px 0px 35px !important; 
    }
    #top.home .togglecontainer .toggle_content {
        padding: 0px 0px 0px 35px !important; 
        margin-bottom: 0px !important; 
    }
    #top.home .togglecontainer .single_toggle {
        margin-bottom: 0px !important; 
    }

    Best regards,
    Mike

    Hi,
    It sounds like it could, I recommend making a complete backup of the site now and then try using your other backup.
    When I look at your site now it looks like there are just a few font colors that need to be changed, such as the black font in the section “WELCOME TO THE LIFE UNDERWATER”, it seems that it would be a easy fix to do?
    Is there other major changes?

    Best regards,
    Mike

    Hi,
    I see that you have a new version installed now, so I imagine that the question of updating is not needed now?
    For your second question, I believe you are referring to the layerslider popup feature which is a premium feature that I don’t have on my localhost. Can you create a test page displaying the layerslider popup and it’s error so we can see?

    Best regards,
    Mike

    in reply to: compression not working (performance) #974213

    Hi,
    Glad to hear it helped, shall we close this then?

    Best regards,
    Mike

    Hi,
    Sorry, it looks like we won’t be able to recover from the changes. I tested the older css files but they seemed worse.

    Best regards,
    Mike

    in reply to: External Menu Links with One Page Design Problem #974178

    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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Enfold: background-attchment: fixed; not works #974175

    Hi,
    Glad to hear you have resolved this, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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

Viewing 30 posts - 26,431 through 26,460 (of 34,558 total)