Viewing 30 results - 631 through 660 (of 106,438 total)
  • Author
    Search Results
  • #1490816

    the filter avf_logo_subtext is nice to have both Logo Image and Text

    try instead:

    function use_text_logo_only($logo){
      $link = apply_filters( 'avf_logo_link', home_url( '/' ) );
      $logo_tag = "h1";
      $logo_heading = "Wayne Anderson";
      $alt = get_bloginfo( 'name' );    
      $title = get_bloginfo( 'name' );
    
      $logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.'</'.$logo_tag.'></a>';
      return $logo;
    }
    add_filter('avf_logo_final_output','use_text_logo_only');

    and on quick css:
    (maybe with your header setting – you had to adjust the css a little bit )

    #top .logo.text-logo  {
      display: flex;
      justify-content: left;
      align-items: center;
      width: auto;
    }
    #top .logo.text-logo h1  {
      margin: 0 !important;
      font-size: 30px;  /* adjust to your needs */
      text-transform: uppercase !important;
    }

    PS: if you like to have different alt and title tags replace in the snippet above with hardcoded strings

    
    $alt = "your alt attribute";    
    $title = "your title attribute";
    

    and if you do not like to have a h1 – just replace to a different tag ( h2, div, span etc. ) but then you had to adjust the css to that tag

    see example page: https://webers-testseite.de/background-video/

    #1490806

    Hi Ismael,

    Thank you so much, that’s awesome! I do get the CSS (almost …) but I have 2 questions. I know I said not to look at the dimensions but still:

    1. How can I place the text at the bottom like in my example? I guess it must be in .av-text-column but justify-content: center bottom doesn’t work
    2. Where/how can I change the proportions? Let’s say image 70% text 30%
    3. EDIT: Found it, It’s in the flex properties. .av-text-column {
      flex: 1; and .av-image-column { flex: 3; did the trick. So forget the last question

    Best regards,
    Steven

    • This reply was modified 5 months ago by steviger.
    • This reply was modified 5 months ago by steviger.

    Hi,

    Thank you for the screenshot.

    Did you add this css code?

    .responsive .fullsize .grid-col-4 .grid-image {
        height: 215px;
    }

    This limits the height of the grid items. Try to remove this css code or override it with the following css rule:

    .responsive .fullsize .grid-col-4 .grid-image {
        height: auto !important;
    }
    

    Screenshot-2025-10-31-at-2-14-45-PM

    Let us know the result.

    Best regards,
    Ismael

    #1490793

    Hey steviger,

    Thank you for the inquiry.

    You can continue using the Content Slider element. Add the following html in the editor:

    
    <div class="av-flex-container">
    <div class="av-image-column">
        <img src="http://site.com/image.jpeg" alt="Sample Image" /></div>
    <div class="av-text-column">
    <h2>Title Here</h2>
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vel urna at sapien tempor dictum.
    
    </div>
    </div>
    

    Then add this css code to create a container with two columns, an image on the left and a title with text on the right.

    
    .av-flex-container {
      display: flex;
      width: 100%;
      height: 400px;
      flex-wrap: wrap;
    }
    
    .av-image-column {
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    
    .av-image-column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .av-text-column {
      flex: 1;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #f5f5f5;
    }
    
    @media (max-width: 768px) {
      .av-flex-container {
        flex-direction: column;
        height: auto;
      }
    
      .av-image-column,
      .av-text-column {
        flex: 1 1 100%;
        height: auto;
      }
    
      .av-image-column img {
        height: 250px;
      }
    
      .av-text-column {
        padding: 20px;
      }
    }

    Screenshot-2025-10-31-at-1-59-55-PM

    Best regards,
    Ismael

    #1490788
    koomo
    Participant

    Hi,
    Every time I publish an image I have this grey line at the bottom.

    Can’t get rid of it Screenshot

    Any idea.

    Thank you

    Xavier

    • This topic was modified 5 months ago by koomo.
    • This topic was modified 5 months ago by koomo.
    #1490781

    what you can do – ( not with enfold specific tools )!

    do not set the background-image with enfold color-section settings.
    put into the color-section on top a code-block element with this content
    (adjust to your path and videos):

    See Solution on next posts

    Hi again,

    Somehow, I still can’t see any images in your previous comment. But anyways, what you explained this time worked. Thank you very much.

    you do not see the image above in https://kriesi.at/support/topic/how-to-remove-the-bar-above-the-main-menu-preferebly-without-any-css-code/#post-1490697
    click on it to enlarge the image.

    so Enfold (or Enfold-Child) – Header then on the right “extra Elements” Tab
    remove all entries there.

    Header Social Icons : No social Icons
    Header Secondary Menu : No Secondary Menu
    Header Phone Number/Extra Info: No Phone Number/Extra Info

    #1490768
    95mc
    Participant

    Hi,

    We created a website with a video on the homepage. To speed up loading, we created two videos, one for desktop and one smaller for mobile. Each video was placed in a color section with its own visibility settings (image). Everything looks fine visually, but we noticed the website was loading slowly, even though both videos were loading in the console (image). How can we make it so that only the desktop or mobile version of the video loads on each device?

    Thanks advance,

    BR,

    Antonio.

    #1490757
    steviger
    Participant

    Hi guys,

    My designer came up with this idea of sliding content to show several images with text. When clicked the image + text should slide to the next image with an different text. I tried the content slider with 2 seperate divs in the code but that didn’t quite work for me. Let alone that it is not responsive and not really user-friendly for my customer. Are there any of you who could help me out with some tips and tricks or an existing plug-in?

    Here’s the visual idea

    Don’t focus so much on the icon and dimensions. It’s about the technique and the placement of the elements.

    Regards,

    Steven

    • This topic was modified 5 months ago by steviger.

    Hello.

    In the screenshot you attached, the images are not square; they are cropped, as we indicated as the problem. Therefore, you are reproducing the display error. Here is a link to see the same products on my screen: https://ibb.co/X9qWjQX

    ¿¿??

    #1490723

    In reply to: Breakpoint

    Hi,

    Thank you for the inquiry.

    The modification above should resize the testimonial items on all standard screen resolutions. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    #1490722

    In reply to: Enfold Medicine

    Hey slauffer,

    Thank you for the inquiry.

    The site is in maintenance mode, so we are not able to check it. Where the site is hosted? If it’s on OVH, you will need to import the demos manually using the XML files. Due to an issue with this host, images and other media files may not import correctly. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Let us know if you have more questions.

    Best regards,
    Ismael

    #1490703

    Topic: Demo Instalation

    in forum Enfold
    myreczech
    Participant

    Hi, I am trying to install the demo (Spa).

    I just want to ask you, there are no images/slider after the instalation?

    In the description of the demo instalation there is a note: Demo Images included: All.

    Am I doing something wrong…? No images, no slider…I just want to start with something…not just a empty temlpate.

    Thanks, Miroslav

    #1490673

    Hey jonroot,

    Thank you for continuing to use Enfold.

    Have you done any speed optimization on the site such as image compression? We have checked some of the images, and they are quite large relative to their dimensions, one image is only 800×600px but is almost half a megabyte. We recommend installing an image compression plugin and a caching plugin. Please see the articles below for tips on further optimizing your site.

    https://gtmetrix.com/wordpress-optimization-guide.html
    https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    #1490666
    Heather
    Guest

    Hello,

    Can I purchase extended support for my current site? Instead of the theme and support? My site is running Woocommerce and I am trying to add product images to the search results page. I have tried using the Advanced Woo Search plugin but it is not working and I believe it because of a conflict with the Enfold theme.

    Also, I have a search box in the top right corner of the nav bar. When you enter search terms a drop box appears with results however, it closes really quickly and you cannot click on any of the results. How do I fix this?

    Thanks

    #1490636

    Hi,

    You need to remove this css code if you want the featured image to resize automatically based on screen size. This rule sets a minimum height of 630px for the image, preventing it from shrinking while resizing the window. It does preserve the aspect ratio using object-fit: cover.

    #top.single-post .fullsize .template-blog .big-preview img {
        width: 1200px;
        min-height: 630px;
        object-fit: cover;
    }
    

    Best regards,
    Ismael

    #1490635

    That’s not what we’re looking for. If you look at the training page, as the viewer on a desktop computer (not in fullscreen) makes the page smaller or larger by adjusting the sides, the image changes size accordingly, both height and width. That’s what we want the Memo image to do. It did this automatically before the next-to-last update by adding this code to our custom CSS:

    #top.single-post .fullsize .template-blog .big-preview img {
    width: 1200px;
    min-height: 630px;
    object-fit: cover;
    }

    After that update and the latest one, the image stays the same height–nothing changes but the width. All we want is for the Memo image to act like all the other images, and I don’t understand why the same code no longer works.

    #1490607

    Thank you Ismael!

    It almost did the job. It’s just, that the image is not shown completely.
    The text/copy should be all aligned left.
    Also we don’t need the white line.

    Thank you!

    Hey Patrycja,
    Thanks for your question, glad to hear that you have a full backup prepared, including the database, while we don’t expect any issues updating from v4.8.3 to v7.1.3 (lastest version) since Enfold mantins a good backward compatibly, we would note that your PHP version, 7.4.33 is quite old and some plugins (if any) may not work well with PHP v8+ Enfold now uses PHP v8+ as well as WordPress so you should expect to also update this.
    I recommend creating a staging site to test the update on.
    Then on the staging site, disable all plugins including any caching plugin and server caching & the Enfold theme caching in the Performance theme settings.
    Then update to v7.1.3, and reload the site on the frontend using the browser “hard reload” to clear the browser cache. This will help clear the “post-css” files which serve the css background images in the color sections (if used).
    Then update your PHP to v8+, I recommend  the lower end like v8.2 or such, not the “bleeding edge” highest version like v8.5, you can test this later if you wish.
    If you are using a child theme and have modified header.php, footer.php or any other core theme files in the child theme, please save these to your computer and remove them from the child theme, these will be different in the current version & will most likely cause an error when updating.
    When you update, you may not be able to update though the theme panel “update” feature as just about v4.8.3 Envato (Themeforest) changed from the API key to the Token key, so the best approach is to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New, after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue. Then you will see the Theme updated successfully message.
    After updating see our documentation for creating an Envato Token so future updates can be done in the theme panel.
    If you try to update via FTP, do not try to overwrite the theme files, as this will leave old files behind and cause errors, you would need the delete the old theme directory and then upload the new one, using the WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New is the easiest solution.

    Best regards,
    Mike

    #1490581

    @Ive133:

    I plan to reuse elements from multiple demos to build a custom layout.

    in this case – maybe my method of getting the enfold shortcodes from pages by downloading the xml files of the demo.
    You find the demos here on :
    https://github.com/KriesiMedia/enfold-library/tree/master/demos

    Download the concerning zip file of the demo and extract the xml file.
    Open it in a good text editor (f.e. on Mac sublime text – on windows pc’s use notepad++)

    now you can search for “isPermaLink” (without the quotes) in that xml
    or if you look for a page look for “page_id”
    or for portfolio: “post_type=portfolio”

    Just above, you can see the title of the page and the link

    Or even more specifically, search for the title of the desired layout you want to transfer, e.g.,
    <title>Home</title>

    The Enfold shortcodes can be found directly below that reference wrapped by:

    <content:encoded><![CDATA[ 
            … here is the avia shortcode inside
    ]]></content:encoded>

    Pay attention to CDATA – there are two opening square brackets and two closing brackets below.
    The third closing bracket at the end usually belongs to the Enfold shortcodes.

    Of course, this only provides you with the layout framework, including all element settings, but the links and images must then be edited.

    milkrow
    Participant

    Hello,
    I’ve made a duplicate of taxonomy-portfolio_entries.php for my child theme and following instructions found in other posts, modified it like this:

    array(
    											'linking'			=> '',
    											'columns'			=> '3',
    											'items'				=> '18',
    											'contents'			=> 'title',
    											'sort'				=> 'no',
    											'paginate'			=> 'yes',
    											'set_breadcrumb'	=> false,
    										));

    However, it is not showing 18 items.
    Also, one of the images is displaying as square rather than rectangular as the others.

    Any advice would be greatly appreciated.

    Hi,

    Thank you for the screenshots.

    We can’t reproduce the same issue on our installation. We tried selecting a filter, but the images remained the same. We even tried resetting the sorting and then selecting another filter, but the images still look the same. Which browser are you testing this with?

    Screenshot-2025-10-24-at-12-58-31-PM

    Best regards,
    Ismael

    #1490558

    Hey Jables,

    Thank you for the inquiry.

    This layout is not available by default, but you can try using the Blog Posts element. Set Content > Select Entries > Blog Style to Single author, big preview pic, then add the following css code to place the featured image beside the post content.

    .av-alb-blogposts {}
    
    .av-alb-blogposts .post-entry {
        display: flex;
    }
    
    .entry-content-wrapper .big-preview.single-big {
        min-width: 30%;
    }
    
    .av-alb-blogposts .big-preview.single-big a {
        height: 100%;
    }
    
    .av-alb-blogposts .big-preview.single-big a img {
        object-fit: cover;
        height: 100%;
        max-height: 300px;
    }

    Best regards,
    Ismael

    #1490550
    Jables
    Participant

    Dear Kriesi-Team,
    For the overview of the blog posts I want the blog image to be shown left and the title, copy and link to the post in the right side.
    And it should work like a list, so the latest post is shown first and underneath the others.
    Thank you
    Jasna

    Hello Ismael,

    Here are the screenshots:

    Before selecting a filter: https://ibb.co/0pRrvWsF
    After selecting a filter: https://ibb.co/23vKmK3Y

    When selecting a filter, the images are cut off.

    Thank you.

    #1490532

    In reply to: Image Title on Hover

    Hi, thank you! That seems to have worked on the Services page which uses the Image box, but I still see it on the Home and About pages that are leveraging the Masonry Gallery. I’ve cleared my cache again just to double check but it’s still there. Do you see it on your end?

    Hi,

    Thank you for the inquiry.

    The images are now visible, but they’ve changed from square to rectangular. If you refresh the page, they appear square again.

    The images in the portfolio grid still look square when we checked. This is how the grid looks on our end:

    Screenshot-2025-10-23-at-1-48-23-PM

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    #1490526

    Hi,

    Thank you for the update.

    Looks like the script is working, but the isotope script still re-arranges the masonry items, placing the 4th item at the very end of the set. The isotope script is responsible for the masonry effect and sorting. Have you tried deleting that particular post (date August 13, 2025) and recreating it from scratch? You could try rephrasing the title a bit and adjust the image size.

    Best regards,
    Ismael

    #1490524

    In reply to: Image Title on Hover

    Hey sjahan,

    Thank you for the inquiry.

    We’ve made a few edits to the script — please try it again. Make sure to clear your cache before checking the page.

    /* remove image and link title attributes on hover */
    function remove_title_attr(){
    ?>
    <script>
    jQuery(document).ready(function($){
        $('#wrap_all a, #wrap_all img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');
    
    

    Best regards,
    Ismael

Viewing 30 results - 631 through 660 (of 106,438 total)