Viewing 30 results - 26,551 through 26,580 (of 244,605 total)
  • Author
    Search Results
  • #1349341

    In reply to: Widgets Footer Update

    Hi drfingerless,

    You can rename header.php and footer.php files in your child theme to header_old.php and footer_old.php (just for backup).
    Copy header.php and footer.php from the latest Enfold theme, then add the modifications that you have made to those files.

    Best regards,
    Nikko

    Hi Marina,

    We’re glad that Mike could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1349336

    Hey kellyCraftMedia,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #top .av_textblock_section .av_font_icon {
        display: inline-block;
        float: none;
    }

    Best regards,
    Nikko

    #1349311

    Hi,

    Thank you for the clarification.

    You may need to update the theme from 4.9.2 to version 4.9.2.1 to fix the issue with the sidebar.

    // https://kriesi.at/documentation/enfold/changelog/

    If the issue persists after the update, please do not hesitate to open another thread.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We just noticed that the site is still using an older version (4.7.6.4) of the theme and requires an update. Please download the latest version (4.9.2.1) from your Themeforest account and upload it to your server manually via FTP. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Did you add some css modifications to make the #footer full width?

    Thank you for your patience.

    Best regards,
    Ismael

    #1349307

    In reply to: Widgets Footer Update

    Hey there djsmbd and Rikard, I have the same issue. Are you able to help me understand what you did to update the footer code in the Enfold Child editor?

    #1349304
    Kelly Erickson
    Participant

    Hi Enfold team! I’ve posted about this issue before, but I’m on a different website now and I can’t figure out what to do!

    I have two icons that are displaying side by side, which is what I want, but I can’t get them to display centered AND side by side within a Text Block.

    Link to page + login details so you can have a closer look!

    Thank you in advance.

    #1349303

    Hi Mike,

    thanks for updating.
    Yes, after checking again I only found the fontello on your test-site.
    But still, I do not understand, why my site doesnt show any Google Fonts anymore, although I currently do not use the code of Guenni.

    What is your cookie banner (cookie avoidance) suggestion then?
    The enfold solution seems to deliver cookie information even before the first opt-in. (not blocking all)

    Thanks
    Marcus

    Hey Intell,
    Thank you for sharing your solution, hopefully it will help others. If you have any further solutions or questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1349299

    Hi,
    Glad we were able to help point you in the right direction, please see this article: A Complete Guide to CSS Media Queries
    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

    #1349296

    Topic: Footer/socket fixes

    in forum Enfold
    Kelly Erickson
    Participant

    Hi lovely Enfold team! I’m having some funky things going on that I was hoping you could help me with!

    1) Mobile socket: I have it set up to center the socket content and stack all the links (so it goes Copyright, two social icons side by side, link, link, link, etc.). Here’s the code I used for that:

    @media only screen and (max-width:550px) {
      .responsive #socket .sub_menu_socket {
        display: block !important;
        width: 100%;
      }
      .responsive #socket .sub_menu_socket .menu {
        margin-left: 0;
      }
      .responsive #socket .sub_menu_socket .menu li {
        border: 0;
        display: block;
        float: none;
        text-align: center;
        line-height: 1.7;
      }
      .responsive #socket .sub_menu_socket {
        display: block !important;
        width: 100%;
      }
      .responsive #socket .sub_menu_socket .menu {
        margin-left: 0;
      }
      .responsive #socket .sub_menu_socket .menu li {
        border: 0;
        display: block;
        float: none;
        text-align: center;
        line-height: 1.7;
      }
    }
    

    Only problem is the social icons are not quite center for some reason – they are just off to the right a little bit. Screenshot provided in the private content.

    2) Footer font size: I am using the following code to adjust the size of the font in the footer:

    #footer p {
      font-size:16px !important; 
    }

    However, it only applies to the first footer column and not the rest (I had to code in the font size of the third footer column to get me through for now)

    3I think that’s it for now! Thank you in advance!

    #1349291

    Hi,
    Glad we were able to help, 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

    #1349288

    Thanks Nikko, I will do my homework on CSS Media Queries first. If you need to close this thread, go ahead. If I don’t manage to get the results I need, I would open a new thread with details and a login option for Enfold support. Thanks a lot for your support, which I really appreciate, but I understand that I would have to use separate CSS handling for different media and that there’s no simple solution via Enfold’s built-in elements. So I guess, now it’s up to me!
    Best regards
    Andrew

    Hello Mike,

    Thank you for the code, I used the second one.

    I am referring to the displayed in big taxonomy title, not the first item in the line of sort options. I would like to replace the displayed taxonomy title for the “All” sort option for portfolio by the word “Portfolio”, and correspondingly for the blog – by the word “Blog”.

    I am working on the basis of the Enfold Photography demo, so the target pages are:

    Currently, the word “All” is not informative for the visitor, where he is, especially on mobile. The first item in the line of sort options can remain to be “All”, but when you click it, the displayed title should be “Portfolio” or “Blog” respectively, other sort options should function as before.

    Thank you for your help,
    Marina

    #1349272
    InSilentio
    Participant

    Hi,
    SVG-Logo does not show up.

    logo.svg:
    -Upload sucessfull
    – I set it in the Enfold settings
    – I can see it in the Enfold-settings
    – I dont see it in the frontend (logo area is empty)

    logo2.svg:
    Upload: You dont have permission to upload this filetype
    (I also tried to add this code in the function.php:

    /**
    * add SVG to allowed file uploads
    **/
    function add_file_types_to_uploads($file_types){
    
    $new_filetypes = array();
    $new_filetypes['svg'] = 'image/svg+xml';
    $file_types = array_merge($file_types, $new_filetypes );
    
    return $file_types;
    }
    add_action('upload_mimes', 'add_file_types_to_uploads'); 

    )

    kind regards
    Elvira

    Borja
    Guest

    Hello, I have make a registration for support forum, I wrote username and a valid enfold theme key but never received an email with my password to acces support forum.
    Please check it.
    Best Regards.

    #1349259

    In reply to: Footer Not Working

    Hi,
    Glad Rikard could help, 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

    #1349255

    In reply to: LayerSlider

    Hey InSilentio,
    Thank you for your question, Enfold does include a bundled version of the LayerSlider that the LayerSlider team has provided which doesn’t include some Premium options and the Premium Templates.
    To use the Premium Templates you will need to purchase a LayerSlider license and download and install the standalone version from LayerSlider, and deactivate the bundled version, you can not use the license on the bundled version.
    If you do not extend the LayerSlider license in the future then your version will not update, but I believe it will keep working as is, I recommend asking the LayerSlider team this question before you purchase to be sure.

    Best regards,
    Mike

    #1349250

    Hi,
    Glad Rikard could help, 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

    #1349248

    Oh gosh! 1 more thing. I promise I’m going to put all my questions and your answers in a thread so it will help all the other people with all the same needs!! Lol

    Ya’ll helped me with making the Enfold contact input field’s backgrounds transparent, but the Text Area wasn’t included.

    So then I would like MailChimp submit button to look the same as the Enfold Contact Form submit button, same size and orientation.
    If this is possible.

    This is the css I have so far

    
    
    #top #main input[type='submit'].button {
        background-color: transparent;
        color: #3c5c85;
        border: 1px solid #ae883d;
    }
    #top #main input[type='submit'].button,
    #top #main input[type='text'] {
        background-color: transparent;
        color: #3c5c85;
        border: 1px solid #ae883d;
    }
    
    .avia-mailchimp-form input {
        text-align: center;
        font-family: 'Josefin Sans';
    }
    
    .toggler {
    border-top: none!important;
    border-bottom: none!important;
    }
    
    span.blog-author.minor-meta, .text-sep-date {
        display: none!important;
    }
    
    #top .avia_ajax_form.avia-mailchimp-form input[type='submit'] {
      font-size: 22px;
      
    }
    
    #top .avia_ajax_form.avia-mailchimp-form input[type='text'] {
        font-family: 'josefin sans'; 
      
    }

    Thank you!!

    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.

    Best regards,
    Mike

    #1349242

    Hi,
    Thanks for the screenshot, to align the images to the bottom try this css:

    #top #wrap_all .avia-gallery .avia-gallery-thumb a {
        display: flex;
        flex-direction: column;
    }
    #top #wrap_all .avia-gallery .avia-gallery-thumb a img {
    	margin-top: auto;
    	
    }

    To have the tooltips show below the items edit \enfold\js\avia.js on line 1243 you will find position: 'top', //top or bottom change it to: position: 'bottom', //top or bottom and add this css:

    .avia-tooltip .avia-arrow-wrap {
        bottom: 45px !important;
    }
    .avia-tooltip .avia-arrow {
        top: 15px !important;
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    GeoCreo
    Participant

    Hello,

    I am getting the following error displayed above my layerslider:

    Notice: LayerSlider skin “v6” not found. Defaulting to “noskin”. in /home/ftmgafeg/public_html/wp-content/themes/enfold_/config-layerslider/LayerSlider/assets/classes/class.ls.sources.php on line 100

    I have included my logins below if you need to check out the problem.

    Thank you.

    Best regards,
    George

    Hi,
    Glad Rikard could help, 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

    #1349224

    Hey JKnoblach,
    Thank you for your patience and for the link to your page, it looks like you are using the masonry element and showing portfolio items. We don’t have a default way to add logo images over the masonry item on hover but I was able to find a way to do this for this situation using images, but it may not work with SVG’s because you will need to use image element shortcodes. I imagine you could create custom SVG shortcodes ad use them, but you can’t use html in the excerpts.
    For this example we will create an image shortcode using the shortcode wand and paste that shortcode in to the portfolio item manual excerpt field.
    Then in the masonry element we will choose to show the excerpt only instead of the title that you are now showing and add this css into the WordPress ▸ Customize ▸ Additional CSS field:

    .av-masonry-entry-content .avia-image-container img {
    height: 100px;
    width: 100px;
    }

    this css assumes that your logo image is 100px square, feel free to adjust to the size you wish to show.
    Then in order to show the shortcode from the excerpt you will need to install the plugin Shortcodes Anywhere or Everywhere and choose the setting In Post/Page Custom Fields
    2022-04-23_002.jpg
    The expected result:
    2022-04-23_001.jpg
    I linked to my example page below, please give this a try.

    Best regards,
    Mike

    #1349216

    Hey Rikard,

    I think I don’t understand what you mean.
    I was in the Enfold settings, there I cannot change the Menue Style to a button.
    But If I change the Menue in global , then i still have the problem, that it does not changes the Fontcolour when i create an other Site with other Background-Color (i want to be the Header transparent).
    I want it exactly like here: https://www.zumheidkrug.de/ (it changes font-Color regardsing on which page you are).

    Now I use a submenue element

    #1349211

    Hi,
    Glad Ismael could help, since you are not using a child theme the above function will be lost with future theme updates Read about installing a child theme & Get it here

    Best regards,
    Mike

    Hi,

    Thanks for contacting us!

    You can refer to this post – https://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-a-subdirectory-step-by-step/ and create sub directories.

    Since you are planning to create separate installation for each language, I would recommend you to create the default language first, then duplicate it on your sub directories and replace the content for each language. You could import one of Enfold demos – https://kriesi.at/themes/enfold-overview/ and use it as base to create your first site.

    Then, you can refer to this post – https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area and add a widget area to your header and use it as language switcher.

    I hope that helps :)

    Regards,
    Yigit

    #1349193

    Hey John,

    Please try the following in Quick CSS under Enfold->General Styling:

    #footer #nav_menu-8, #footer #search-6 {
      margin-top: 0; 
    }

    Best regards,
    Rikard

    #1349191

    Topic: Rank Math SEO plugin

    in forum Enfold
    johnallen
    Participant

    Any theme or plugin will work with Rank Math if they are using WordPress’s Codex.

    We suggest that you can get in touch with the support folks from Enfold and their Avia page builder and ask them to add our Content Analysis API, by showing them this link:

    Many known companies have already added the compatibility, as it takes a few hours:

    Elementor

Viewing 30 results - 26,551 through 26,580 (of 244,605 total)