Forum Replies Created

Viewing 30 posts - 2,821 through 2,850 (of 25,536 total)
  • Author
    Posts
  • Hi jonatanpalm,

    Can you give us a link to your site? so we can inspect it.
    You can post it in private content.

    Best regards,
    Nikko

    in reply to: Column width is being ignored #1357515

    Hi aestheticare,

    Thanks for giving us admin access.
    I have added a Custom CSS Class Name my-columns to your Color Section and added this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (min-width:768px) {
      #top .my-columns .flex_column_table {
        display: flex;
        justify-content: center;
        align-items: center;
      }
    
      #top .my-columns .flex_column_table .av_one_third {
        margin-left: 0;
        width: 528px;
        max-width: 48%;
      }
    }

    If you need to apply this on your other pages, just use the same layout and add the Custom CSS Class name.

    Best regards,
    Nikko

    in reply to: Scroll Down arrow on Advanced Layerslider #1357495

    Hi ivanglaser,

    We are happy to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Enfold Theme – Various setup #1357494

    Hi Marcus,

    The enfold child theme can’t be downloaded at themeforest, you can download it on our server: https://kriesi.at/documentation/enfold/child-theme/ then click the large yellow button with the label “Download the Enfold Child theme”.

    Best regards,
    Nikko

    in reply to: Button alignment over 3 columns #1357493

    Hi Marcus,

    Please try adding this CSS code in Enfold > General Styling > Quick CSS:

    /** Desktop **/
    @media only screen and (min-width: 1200px) {
      .page-id-9 #after_grid_row_2 .av_one_third .avia_textblock {
        min-height: 248px;
      }
    }
    
    /** Tablet: Landscape **/
    @media only screen and (min-width: 980px) {
      .page-id-9 #after_grid_row_2 .av_one_third .avia_textblock {
        min-height: 300px;
      }
    }
    
    /** Tablet: Portrait **/
    @media only screen and (min-width: 768px) {
      .page-id-9 #after_grid_row_2 .av_one_third .avia_textblock {
        min-height: 390px;
      }
    }

    Best regards,
    Nikko

    in reply to: problème superposition de colonne #1357491

    Hey sebzh22,

    You can target your code to affect only the desktop by wrapping it inside a media query, please replace your code with this:

    /** Superposition slider-accueil **/
    @media only screen and (min-width:1024px) {
      .slider-accueil {
        margin-left : -50px !important;
        margin-top : 50px !important;
      }
    
      .grille-icone-accueil {
        z-index : 100 !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 3 years, 1 month ago by Nikko. Reason: wrong code

    Hey Eleina,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    .html_elegant-blog #top .post-entry .post-meta-infos {
        float: none;
    }

    Best regards,
    Nikko

    in reply to: social icons size adjust in socket #1357489

    Hi Marcus,

    What Ismael meant with that is when the code is added and you don’t see any changes you may need to temporarily disable the Enfold > Performance > File Compression settings since older CSS files might be fetched.

    Best regards,
    Nikko

    in reply to: Theme Error #1357488

    Hi Justin Erwin,

    Thanks for contacting us!
    The issue you are having seems incompatibility between the version of your Enfold theme (3.6.1, which is very much outdated) and the latest version of WordPress 6.0.
    Please backup your site first, then update it to the latest version of Enfold (5.0.1).

    Best regards,
    Nikko

    in reply to: Adding Social icons in fiooter #1357487

    Hi woogie07,

    Please add this code in the functions.php file of your child theme:

    add_shortcode( 'social_icons', 'custom_social_icons' );
    function custom_social_icons() {
        $args = array( 'outside'=>'ul', 'inside'=>'li', 'append' => '' );
    	$icons = new avia_social_media_icons( $args, false );
    	$html = $icons->html();
    	return $html;
    }

    If you don’t have a child theme yet, you can download and get further instructions on: https://kriesi.at/documentation/enfold/child-theme/

    Next go to Appearance > Widgets > Footer – Column 4, then add a Text widget and inside it add this:

    [social_icons]

    Then style the social icons, by going to Enfold > General Styling > Quick CSS and add this CSS code:

    #top #footer .social_bookmarks li {
        clear: none;
    }
    
    #top #footer .social_bookmarks li a {
        color: #181f35;
    }
    
    #top #footer .social_bookmarks li a:hover {
        color: white;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: sticky burger menu mobile/Ipad version #1357485

    Hi Veronika,

    I checked it on my mobile phone and it lifted the burger menu and the search icon:

    Best regards,
    Nikko

    in reply to: child theme distortions on website #1357483

    Hi Veronika,

    #1 & #3 Seem to work, here are the screenshots on my end, https://savvyify.com/img/image/vKy1 and https://savvyify.com/img/image/vbvN

    #4 please add this code:

    #top .home_post_layout2 .slide-entry-wrap .slide-parity-even {
        margin-top: 160px;
    }
    
    #top .home_post_layout2 .avia-content-slider-inner .slide-entry-wrap:not(first-child) {
        margin-top: -160px;
    }

    Best regards,
    Nikko

    • This reply was modified 3 years, 1 month ago by Nikko.
    in reply to: child theme distortions on website #1357352

    Hi Veronika,

    Please add the following CSS codes:
    1.Some of my links are underlined when hovered over it, it should only be a grey out

    #top a:hover {
        text-decoration: none;
    }

    2. The grey out effect, when hovering over the posts, is way to intense. It is supposed to be less opaque and less grey

    .avia_transform #top a:hover .image-overlay {
        opacity: 0.2 !important;
    }

    3. Meanwhile the grey out effect is non existent at all on my “all posts” page

    #top .av-masonry-container .av-masonry-image-container:after {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(255,255,255,0.2);
        opacity: 0;
        visibility: hidden;
    }
    
    #top .av-masonry-container .av-masonry-entry:hover .av-masonry-image-container:after {
        opacity: 1;
        visibility: visible;
    }

    4. The rightmost post should be displaced a little below, with some whitespace for the burger menu and the search icon
    I don’t see the issue on my end, is this already fixed?

    5. The burger menu and the search icon should be aligned below one another
    The search icon and burger menu are aligned vertically (below one another), if the issue persists, try clearing out the browser cache.

    Best regards,
    Nikko

    in reply to: sticky burger menu mobile/Ipad version #1357351

    Hi Veronika,

    Please try adding this CSS code in Quick CSS:

    @media only screen and (max-width:767px) {
      .html_burger_menu_active #top #wrap_all #header #avia-menu .av-burger-menu-main.menu-item-avia-special > a {
        top: 0 !important;
      }
    
      .av-burger-menu-main.menu-item-avia-special .av-hamburger {
        line-height: 50px;
        padding: 15px 25px;
      }
    
      .html_burger_menu_active #top #wrap_all #menu-item-search > a {
        top: 40px;
      }
    }

    Best regards,
    Nikko

    in reply to: Enfold Theme – Various setup #1357350

    Hi Marcus,

    Would you suggest I register for the keys under the dev domain to create them and add Recaptcha in enfold google services so that I can test OR Wait until the site is in it’s true domain, then register for the keys in the true domain and then enable Recaptcha.
    You can register keys under your main domain, while using it on your dev domain, if the dev domain is just a subdomain of your main domain, if it’s (dev domain) a separate url/domain then just use the dev domain URL.

    Which do I enable to create the pop up in entry of the site?
    Go to Enfold > Privacy & Cookies > Cookie Handling (tab) > set Enable cookie consent messages to Enable cookie consent messages and save.
    That should make it show to popup window, however the options after that you’ll need to read through the documentation since everyone has different implementation of it.

    If I want to add code in the head tag that is script not for Google but another – is this applied in Appearance > Theme File Editor? If so which php file do I edit?
    I would suggest using a child theme: https://kriesi.at/documentation/enfold/child-theme/
    Make sure to follow the instructions especially in Install a child theme from your WordPress dashboard (usually step 4 is skipped which is important in keeping the same settings with the parent theme.
    Once the child theme is setup properly, you can add this script in functions.php of the child theme:

    //-------------------------------
    // Custom script in head section
    //-------------------------------
    
    function custom_script_name(){
    ?>
    <script>
    
    // Your script here
    
    </script>
    <?php
    }
    add_action('wp_head', 'custom_script_name');

    then insert your script in the area specified.
    For further information please check: https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section

    Best regards,
    Nikko

    in reply to: Enlarge Easy Slider to full width on mobile devices #1357349

    Hi fkm,

    Can you try using this CSS code and see if it helps:

    @media only screen and (max-width:767px) {
      #section-container-width .avia-slideshow {
        width: calc(100% + 32px);
        margin-left: -16px;
      }
    }

    Best regards,
    Nikko

    in reply to: Slider caption Centalised #1357085

    Hi condonp,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    .home #av-layout-grid-2 .av-slideshow-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    Best regards,
    Nikko

    in reply to: Transparent Header not working on Mobile device #1357081

    Hi ivanglaser,

    I see, you can target the pages with that uses transparent headers using this class in the html: html_header_transparency.
    Can you comment out the custom CSS codes that you have added? (or temporarily remove them and save them somewhere else) then give us the link to a page that does not use a transparent header and we’ll try to give you some CSS codes that should help.

    Btw, your site really looks great, especially those animal photos (one of the best I’ve seen) :)

    Best regards,
    Nikko

    in reply to: Mobile logo adjust #1357077

    Hi noventa90,

    I have tested this code and it does work on my end (the logo will not change when resizing the browser).
    Can you try to change the single quotes and double quotes and see if it helps?
    Also, I’m not really noticing any difference between the mobile logo and desktop logo in terms of design, maybe CSS code would be enough in this case, try adding this code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:479px) {
      .responsive .logo img, 
      .responsive .logo svg {
        max-width: 180px;
      }
    }

    Let us know if this helps.

    Best regards,
    Nikko

    Hi Guenni007,

    I have tested your code and it does work properly.
    I don’t see any significant difference between the two codes in terms of functionality, so I think both whdsolutions can use one or the other, the latter would be more preferrable since you don’t need to modify anything on the code :)

    Best regards,
    Nikko

    in reply to: License code purchase and activation. #1357066

    Hi Anish,

    Thanks for contacting us!
    1. Yes it’s possible
    2. Please login to your account on ThemeForest and go to Enfold’s page – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 and purchase it.
    3. Since you have downloaded the theme from other sources, it is possible that it might contain some malwares, I would suggest switching to a default WordPress theme and deleting the enfold theme, upload the enfold theme you have downloaded from themeforest (if you have made some tweaks on the site, please backup your site first).
    4. Did you make some modification to the Enfold theme? if yes, then consider moving those tweaks on a child theme, you can download our child theme here: https://kriesi.at/documentation/enfold/child-theme/
    Also, what version of Enfold are you using?

    Best regards,
    Nikko

    in reply to: License renew #1357063

    Hey Gabriel ,

    Thanks for contacting us!

    Please login to your account on ThemeForest and go to Enfold’s page – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 and click “Renew support” button on the right hand side.

    After that, you can go to https://kriesi.at/support/forum/enfold#new-post and re-validate your purchase code :)

    Best regards,
    Nikko

    in reply to: Plz Plz Help | importing demo files did not work #1357061

    Hi souvikcinekolkata,

    I have checked your site however PHP ZipArchive Extension is not enabled on your site.
    You can check the link in private content to verify this.
    Once you enable the extension, importing demo should work properly.

    Best regards,
    Nikko

    in reply to: Include JavaScript in the head #1357056

    Hi Franz,

    You can add a script to the head section using this code snippet and add it to functions.php of your child theme:

    //-------------------------------
    // Custom script in head section
    //-------------------------------
    
    function custom_script_name(){
    ?>
    <script>
    
    // Your script here
    
    </script>
    <?php
    }
    add_action('wp_head', 'custom_script_name');

    For further information on this topic, please refer to our docs: https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section

    Also, the is_search() only triggers when a search result page archive is being displayed.

    Best regards,
    Nikko

    in reply to: Mobile logo adjust #1357055

    Hey noventa90,

    Can you try adding this code in your child theme’s functions.php:

    /*Use a different logo on mobile*/
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo) {
        if ( wp_is_mobile() ) {
            $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    Just change the logo URL.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Diffrent menu on mobile #1357054

    Hi bonsaimedia,

    You can use a different menu for the mobile by going to Enfold > Main Menu > General (tab) > Alternate Menu For Mobile then set it to the menu of your choice.
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Google Maps API Key not valid #1357053

    Hi ichmusshierweg,

    Please do the following:

    • Google now requires you to enable billing for the API key to work.
    • Check if you typed the API key correctly.
    • If you use the restriction setting on Google try to remove that and check if it works.
    • Create a new unrestricted API key and try again, if the old key is not working for you.
    • Check if GeoCoding service is enabled.
    • If none of this helps: deactivate all plugins and then check if the API key works.

    For further information please check our docs: https://kriesi.at/documentation/enfold/google-map/#could-not-connect-to-google-maps-with-this-api-key

    Best regards,
    Nikko

    in reply to: Link button on fullscreen slider image not working #1357050

    Hi ivanglaser,

    We are happy to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Gap between header and content on mobile device #1357049

    Hi Ivan,

    No, you don’t need to disable it at all times although if changes made does not seem to show then you should disable it for atleast few days as the server might be using cached version of the CSS/JS file.
    Try to enable it back after few days.

    Best regards,
    Nikko

    in reply to: Transparent Header not working on Mobile device #1357048

    Hi ivanglaser,

    We apologize for the delayed response.
    I have checked your site on mobile and I don’t see any issue.
    Can you try to clear your browser cache, or if you are using chrome on mobile, try to use it incognito mode.

    Best regards,
    Nikko

Viewing 30 posts - 2,821 through 2,850 (of 25,536 total)