Forum Replies Created

Viewing 30 posts - 25,471 through 25,500 (of 35,305 total)
  • Author
    Posts
  • in reply to: Decrease Space Between Main Menu/Header Section & Body of Page #1013168

    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: Spacing above Title on Sales Page on Mobile? #1013164

    Hi,
    I took a look at your page and can say that the space was just a matter of removing the top padding, I added:

    #top.page-id-983 #after_full_slider_1 .template-page.content {padding-top: 0px !important;}

    I also found that your new optin form has a bottom margin, so I added:

    #top.page-id-983 #optin {margin-bottom: 0px !important;}

    To correct your page for tablets (768px) I added this css:

    @media only screen and (min-width: 766px) and (max-width: 770px) { 
    #top.page-id-983 #full_slider_1 {
    max-height: 300px !important; 
    }
    #top.page-id-983 #optin {
        top: -45px !important; 
    }
    #top input[type="text"],#top input[type="email"] {padding: 2px !important; margin-bottom: 0px !important;}
    .main_color input[type='submit'] {height: 24px !important; padding: 2px !important;}
    }

    Please check.
    For the mobile sizes the special heading was giving a top margin, which I corrected with this css:

    @media only screen and (max-width: 430px) { 
    #top.page-id-983 .av-special-heading-h3 {
    margin-top: 0px !important;
    }
    }

    Now option form needs to be adjusted with css to fit inside the background image arrow, is this something your freelancer is going to be doing?

    Best regards,
    Mike

    in reply to: Decrease Space Between Main Menu/Header Section & Body of Page #1013148

    Hey LesleyJean,
    Thanks for the login, I changed your header height from 231px to 80px and then added this css to make the logo overlap the image:

    .html_header_top.html_logo_center .logo {
        height: 280px !important; 
    }

    then I changed this css from -12% to -1%:

    .html_header_top.html_bottom_nav_header #header_main_alternate .main_menu {
    margin-top: -1%;
    }

    Now it seem to be the way you explained, or at least the way I understood, Please clear your browser cache and check.
    let us know if this helps.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: CSS – cart x remove item button disappears #1013136

    Hey Xinspirit,
    It is not loading because the url to the image is a 404, try adjusting the url to the correct path.

    Best regards,
    Mike

    in reply to: enfold read more link in masonry portfolio #1013135

    Hi,
    Thanks for the video, I do see the title moving now. As you assumed the code works after the page is loaded, this is a nature of jQuery. Typically this happens very quickly and you would not see it.
    I have tried to think of a solution, and have come up with using “fadein” for the titles so you will not see the jQuery action.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS:

    #top.page-id-414 .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content * {
    animation: fadein 1.6s !important; 
    }
    @keyframes fadein{
        0% { opacity:0; }
        99% { opacity:0; }
        100% { opacity:1; }
    }

    This is designed for the team page, but if you would like to try it with other pages, just remove the “.page-id-414” part of the code. You can also try adjusting the “fadein 1.6s” to a different number as needed.

    Best regards,
    Mike

    in reply to: Updating page is hanging #1013123

    Hi,
    Thank you, I was able to login, I first found that your “Google Analytics Tracking Code” script was in your “Google Maps API Key” field, I moved it to the correct place.
    I then found this error when I tried to edit your homepage:

    Failed to load resource: the server responded with a status of 404 (Not Found) /wp-admin/admin-ajax.php

    This means that your WordPress is missing this file. So you could try to reinstall your WordPress though your webhost options or via FTP.

    Best regards,
    Mike

    in reply to: Displaying the comment box above comments #1013120

    Hey j0schi,
    I have included a modified “comments.php” in the Private Content area. Please replace the same file in the root directory of the enfold theme:
    \wp-content\themes\enfold\comments.php
    Please save a copy of your old file until you have tested the new file.

    Best regards,
    Mike

    in reply to: Updating page is hanging #1013114

    Hi,
    I see that you have added a login, but could you please also include the url to your site.

    Best regards,
    Mike

    in reply to: Remove featured image from all pages #1013113

    Hey SilviaNT,
    Please try this code in the General Styling > Quick CSS field:

    #top.page .entry-content-header .page-thumb {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: Old Version of Enfold Required #1013111

    Hey quick-brown-fox,
    To use PHP v4.5 you would need to use WordPress v3.1 please see: Minimum PHP Version Required to run WordPress
    I don’t think the Enfold 4.0.4 will work for you, but I have linked to it in the Private Content area so you can try.

    As an alternative, perhaps you should try using a different webhost with up to date PHP.
    One free webhost that I have tried that has no ads is https://hyper.host

    Best regards,
    Mike

    in reply to: Remove Theme css #1013108

    Hey tijshensen,
    I assume that you would like to remove all the CSS & jQuery of the theme for the homepage only, you can do this by adding:

    if ( !is_front_page() && !is_home() ) {

    before the “register js” & “register styles” in the functions.php, please go to line 358 and fine this code block:

    		//register js
    		wp_enqueue_script( 'avia-compat', $template_url.'/js/avia-compat.js' , array(), $vn, false ); //needs to be loaded at the top to prevent bugs
    		wp_enqueue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), $vn, true );
    		wp_enqueue_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery','avia-default'), $vn, true );
    
    		wp_enqueue_script( 'jquery' );
    
    
    		
    
    
    		//register styles
    		wp_register_style( 'avia-style' ,  $child_theme_url."/style.css", array(), 		$vn, 'all' ); //only include in childthemes. has no purpose in main theme
    		wp_register_style( 'avia-custom',  $template_url."/css/custom.css", array(), 	$vn, 'all' );
    																						 
    		wp_enqueue_style( 'avia-grid' ,   $template_url."/css/grid.css", array(), 		$vn, 'all' );
    		wp_enqueue_style( 'avia-base' ,   $template_url."/css/base.css", array('avia-grid'), 		$vn, 'all' );
    		wp_enqueue_style( 'avia-layout',  $template_url."/css/layout.css", array('avia-base'), 	$vn, 'all' );
    		wp_enqueue_style( 'avia-scs',     $template_url."/css/shortcodes.css", array('avia-layout'), $vn, 'all' );

    and add the condition before and a single bracket after, like this:

    if ( !is_front_page() && !is_home() ) {
    		//register js
    		wp_enqueue_script( 'avia-compat', $template_url.'/js/avia-compat.js' , array(), $vn, false ); //needs to be loaded at the top to prevent bugs
    		wp_enqueue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), $vn, true );
    		wp_enqueue_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery','avia-default'), $vn, true );
    
    		wp_enqueue_script( 'jquery' );
    
    
    		
    
    
    		//register styles
    		wp_register_style( 'avia-style' ,  $child_theme_url."/style.css", array(), 		$vn, 'all' ); //only include in childthemes. has no purpose in main theme
    		wp_register_style( 'avia-custom',  $template_url."/css/custom.css", array(), 	$vn, 'all' );
    																						 
    		wp_enqueue_style( 'avia-grid' ,   $template_url."/css/grid.css", array(), 		$vn, 'all' );
    		wp_enqueue_style( 'avia-base' ,   $template_url."/css/base.css", array('avia-grid'), 		$vn, 'all' );
    		wp_enqueue_style( 'avia-layout',  $template_url."/css/layout.css", array('avia-base'), 	$vn, 'all' );
    		wp_enqueue_style( 'avia-scs',     $template_url."/css/shortcodes.css", array('avia-layout'), $vn, 'all' );
    }

    Best regards,
    Mike

    in reply to: Updating page is hanging #1013099

    Hey ejearob,
    Do you mean that the page will not load now on the frontend or on the backend, or both?
    Can you please include a admin login in the private content area so we can take a closer look. Where you adding any custom code into the page when this occurred?

    Best regards,
    Mike

    in reply to: Pricingtables size #1012969

    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: How to Bold Special header #1012968

    Hi,
    I see that you have many special headings on the page and I assume that you would like them bold though out the site, please try this css in your WordPress > Customize > Additional CSS field:

    #top .av-special-heading h2.av-special-heading-tag,#top .av-special-heading h1.av-special-heading-tag {
    font-weight: bolder !important; 
    }

    Best regards,
    Mike

    in reply to: Pricingtables size #1012966

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

    Best regards,
    Mike

    in reply to: Burger Menu is centered #1012965

    Hey ginnywills,
    Please try this code in the General Styling > Quick CSS field:

    .html_header_top.html_bottom_nav_header #header_main_alternate .main_menu {
        width: 1% !important; 
        float: left !important; 
    }
    .html_av-overlay-side .av-burger-overlay-scroll {
        left: 0 !important;  
    }
    

    To add your own Google Font, please download your font at https://fonts.google.com/ and then add it to your theme at Enfold Theme Options > Import/Export > Custom Font Manager
    Please read about this here

    Best regards,
    Mike

    in reply to: Back-up #1012962

    Hey Eefke,
    UpdraftPlus WordPress Backup Plugin is a respected backup solution, please watch the video at the link to see how it works.
    I would also recommend seeing what backup solutions are available in your webhost control panel, most webhosts have a “one-click” backup and restore solution built-in that will let you restore your site even if you can’t login to your wordpress site. This would be the best option for you, as often when a backup is needed the whole site is down.
    If you have any questions on how to use your webhost backups, your webhost will be happy to assist.
    It’s best to learn how to use it before you need it.

    Best regards,
    Mike

    in reply to: Customise field color of footer form fields #1012960

    Hey Stefan,
    Please try this code in the General Styling > Quick CSS field:

    #text-5.widget input[type=text],#text-5.widget input[type=email],#text-5.widget textarea[name=your-message] {
    background-color: #fff !important;
    }

    please feel free to adjust the color to suit.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove space from Footer page #1012958

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-builder-el-0 .container {
    padding-top: 0px !important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Mobile page setup #1012954

    Hey bauchope,
    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) { 
    #top.page-id-519 #av_section_3 .entry-content-wrapper {
    display: flex !important; 
    flex-wrap: wrap !important; 
    }
    #top.page-id-519 #av_section_3 .flex_column.avia-builder-el-first {
        order: 2 !important; 
    }
    #top.page-id-519 #av_section_3 .flex_column.avia-builder-el-last {
        order: 1 !important; 
    }
    }

    Best regards,
    Mike

    in reply to: can't update 4.2.6 to 4.4.1 #1012951

    Hi,
    Please try updating via FTP by downloading v4.4.1 from your Theme Forest account and then via FTP, look for the “enfold” folder at /wp-content/themes/enfold/ and rename to “enfold-old” then upload the new version as the folder “enfold”
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    Once you have cleared your browser cache and tested that your site is working correctly, you can delete the old folder “enfold-old”.
    If for some reason you want to go back to the old version, simply remove the new folder and change the name of “enfold-old” back to “enfold”
    If you don’t feel confident doing this we can assist if you provide admin & ftp access in the Private Content area and link to your theme file download in DropBox.

    Best regards,
    Mike

    in reply to: Mailchimp horizontal fields #1012949

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

    Best regards,
    Mike

    in reply to: How to Bold Special header #1012948

    Hi,
    Please include the url to the page in question so we can take a closer look as to why it’s losing the bold when viewed as mobile and provide some css that will ensure this doesn’t happen.

    Best regards,
    Mike

    in reply to: how to change the typewriter color when the text is selected #1012946

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

    Best regards,
    Mike

    in reply to: color changing background and text on mouse over for columns? #1012944

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

    Best regards,
    Mike

    in reply to: enfold read more link in masonry portfolio #1012942

    Hi,
    I took a look at your page but I don’t see that the titles are jumping on or with the page load. Please see the screenshot in Private Content area to ensure that I’m looking at the correct element.
    I was using Chrome on Windows, which browser are you using?

    Best regards,
    Mike

    in reply to: Pricingtables size #1012931

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (min-width: 768px) { 
    #top.page-id-444 .avia-table-1.avia-builder-el-22 .pricing-table-wrap:last-child {
        max-width: 230px !important; 
        width: 230px !important; 
        padding-right: 25%!important; 
    }
    #top.page-id-444 .avia-table-1.avia-builder-el-22 .pricing-table-wrap:first-child {
        max-width: 230px !important; 
        width: 230px !important; 
        padding-left: 25%!important; 
    }
    }

    Please see the screenshot in Private Content area for expected results.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: enfold read more link in masonry portfolio #1012782

    Hey Ink_Eye,
    I tried to view the page that you linked to, but it seems to require a login, please provide.

    Best regards,
    Mike

    in reply to: On IE11 font Avenir is blurry #1012780

    Hey axpoitalia,
    I have compared your site in IE11 & Chrome, but I don’t see a difference or any blurry fonts, please include a screenshot of what you are seeing.

    Best regards,
    Mike

    in reply to: Pricingtables size #1012776

    Hi,
    I’m getting the “ERR_NAME_NOT_RESOLVED” error for your url, please check.
    I have tried the link & the text, neither or working for me.

    Best regards,
    Mike

Viewing 30 posts - 25,471 through 25,500 (of 35,305 total)