Viewing 30 results - 3,631 through 3,660 (of 142,852 total)
  • Author
    Search Results
  • #1467488
    Aeroviews
    Participant

    I am trying to change

    .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
    padding-top: 100px;
    }

    As in mobile devices the captions are too low on the screen –

    however no change to .slideshow_caption is taking effect – please advise

    @media only screen and (max-width: 767px) {
    .slideshow_caption {
    padding: 10px 0 0 0;!important;
    }
    }

    After check with developer tools, this padding is being overridden

    • This topic was modified 1 year, 6 months ago by Aeroviews.
    #1467468

    Hi,
    Thanks for the screenshot and the link to your site, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .main_color .avia-color-theme-color-highlight {
        background-color: var(--dark1-color);
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1467449

    Hi,

    Great, I’m glad that you found a solution. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1467434

    Hi,

    Thank you for the inquiry.

    It’s normal for WordPress and themes to generate different sizes or thumbnails for images. This helps avoid using the original or larger image when it’s not necessary. Each thumbnail is used based on the element or template where it needs to be displayed. If you want to prevent the theme from generating these thumbnails, you can add the following filter to your functions.php file:

    // Disable loads of Enfold & WP image sizes upon upload
    add_action('init', 'remove_enfold_image_sizes');
    function remove_enfold_image_sizes() {
    // do NOT remove widget size, is used in backend portfolio items!
    // remove_image_size('widget');
      remove_image_size('square');
      remove_image_size('featured');
      remove_image_size('featured_large');
      remove_image_size('portfolio');
      remove_image_size('portfolio_small');
      remove_image_size('gallery');
      remove_image_size('magazine');
      remove_image_size('masonry');
      remove_image_size('entry_without_sidebar');
      remove_image_size('entry_with_sidebar');
      remove_image_size('shop_thumbnail');
      remove_image_size('shop_catalog');
      remove_image_size('shop_single'); 
      remove_image_size('shop_gallery_thumbnail');
    }

    Related thread: https://kriesi.at/support/topic/media-upload-and-enfolds-thumbnail-sizes/

    Best regards,
    Ismael

    #1467418

    Hey extraeyes,

    Thank you for the inquiry.

    Please try to temporarily disable the Autoptimize plugin and turn off the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. Let us know if this works for you.

    Best regards,
    Ismael

    Hey NicomIT,

    Thank you for the inquiry.

    You can use this css code to adjust the top margin of the #footer container, creating more space between it and the main content wrapper.

    #footer {
        margin-top: 1000px;
    }

    Best regards,
    Ismael

    #1467403

    Topic: LayerSlider

    in forum Enfold
    penanco77
    Participant

    I upgraded to the latest Version of enfold and LayerSlider by kreatura stopped working. I can’t figure out what went wrong. I will have to reinstall the previous version of Enfold if it can’t be fixed. What was changed in 6.0.4 version of Enfold that would break LayerSlider?

    I use LayerSlider for the top section of my homepage and in the middle section where users get a notice of how to enroll in email subscriptions.

    I just discovered it doesn’t work for the admin user when logged in. but the general user has assess fine.

    • This topic was modified 1 year, 6 months ago by penanco77.
    paulw185
    Participant

    On my homepage https://wta.nl/ I have a full width slider, made with Advanced Layerslider. It looks great, but the Kb size of it hurts my pagespeed score. Because it’s a very simple slider I want to replace the slider by a color section with a background image that looks almost the samen and stretches full width. But despite reading every topic on it on this forum, I can’t get it to work. The background image I want to use is the same as the one in my current slider. But when I apply it as a background in the color section it doesn’t stretch to fit full width. The image is 1783 x 534 px.

    What I’ve tried:

    – Gave the color section a Custom ID Attribute, like it says in your Enfold Documentation: https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width and pasted the code in Quick CSS. When applying a background color the color section is full width. But applying my background image doesn’t stretch full width.

    /* Color section container width */
    #section-container-width .container {
      width: 100% !important;
      min-width: 100%;
      padding: 0;
      margin: 0;
    }

    – After that I tried to apply my background image as an image, and used the following code found in this topic: https://kriesi.at/support/topic/full-width-images-on-a-page/#post-711522. That didn’t work either.

    .avia-image-container avia-image-container-inner, .avia-image-container avia-image-container-inner img {
        width: 100%;
    }

    – I finally found this recent topic https://kriesi.at/support/topic/full-screen-image-with-text-overlay/#post-1466589https://kriesi.at/support/topic/full-screen-image-with-text-overlay/#post-1466589 where moderator @Ismael says: try setting the Styling > Background Image > Background Repeat option to the fifth option (Stretch to Fit). But I don’t see that option in my Enfold Layout Builder. I even saw more posts on this forum where users got this Background Repeat advice. Why can’t I see this option?

    So I’m pretty confused right now. It seems so simple to recreate my current slider with a static background image and placing a few buttons in it. But I really don’t know how to do it. Please help.

    By the way: I’ve deleted all my previous attempts with the color section and Quick CSS, so my current page is again with only the current slider.

    • This topic was modified 1 year, 6 months ago by paulw185.
    • This topic was modified 1 year, 6 months ago by paulw185.
    • This topic was modified 1 year, 6 months ago by paulw185.
    #1467366
    jim-cp
    Participant

    Hello,
    We updated the logo on our homepage, located on the top left. It shows the new filename when I hover over it, but it still displays the old image. Inspecting the page shows also the new filename, PrimaryLogo_2.png. We use a custom child theme based on Enfold. I checked the usual PHP files but couldn’t find anything hardcoded. Any idea what could be causing this? I am adding WP admin access data in the private content in case you want a closer look.

    #1467361
    lucybb2
    Participant

    Hi,
    I would like to sort my custom posts oldest to newest.
    I have tried various plugins that promise to let you choose to sort categories ascending versus descending but none seen to work.
    I wonder if this is because of the way I am putting out my thumbnails with this custom code:

    Is there a way I can switch to oldest to newest sort order?
    Thanks

    #1467360
    lucybb2
    Participant

    Hi,

    Please see my previous thread as to where I am coming from:

    I am wondering is it possible to put out like an IF statement in custom templates with ACF.

    For example, I have ten ACF fields, but most entries I only have data for five of those fields.

    It would look much better if I don’t have data for an ACF field, then that ACF field did not show.

    E.g. If my ACF field is URL I want it to show like this is there is a URL:

    Link: http://www.websitey.com

    But I don’t want it to show like this if there is not a URL:

    Link:

    Thanks for any advice that can be offered.

    Lucy

    #1467349
    Yory
    Participant

    Hi
    is it normal for the theme to create 14 duplicates of a single image upload, some x5 heavier than the original although not larger in dimensions than the original?
    I’ve uploaded a single 1000px 63 kb image file and got 14 versions. Are all these duplicates needed?
    How do I get the theme to stop this?
    How do I know which image sizes variations are needed for the content to display properly ?

    see duplicates
    image-duplicates-enfold“>

    • This topic was modified 1 year, 6 months ago by Yory.
    billbasler
    Participant

    I have a page that is displaying my blog posts. I am using the Blog Post page builder element on the Grid setting.

    in short, my client would like to occasionally use the “sticky post” setting. Please see: https://preucil.org/news/

    On this page, there is a post “2024 Suzuki String Retreat” that is designated as sticky. That post was made on September 16, 2024. Later a post was made on September 17, 2024. This new post is NOT sticky, but it shifted the sticky post down in the order. I would like to have the sticky post actually hold in the top left position in the grid.
    Thank you.

    —bbasler

    #1467327

    Hi!
    I manage to resolve the issue with this: https://kriesi.at/support/topic/add-a-custom-field-in-the-masonry-post-blog-list-element/

    Thank you very much for your help.

    You can close this.

    #1467322

    Hi,

    Great, I’m glad that you found a solution. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1467321
    szimmerdesign76
    Participant

    Safari 18. WordPress 6.6.5. Enfold 6.04. PHP 8.0.15.

    When on a page, after selecting “edit page”. It loads, but the builder appears far to the right. I have to scroll in order for it to center, until I scroll back to the top.

    #1467313

    In reply to: Sliders

    thanks! it works fine (this topic can be closed)

    #1467309

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1467307

    Thank you Rikard,

    sadly this does not work. The Peak is still there and now there is also die default hairline outline left right and top visible.
    But when i “delete” these lines, then the peak goes away!
    New Code:

    background-color: transparent;
    border-bottom: 2px solid #434b5b;
    border-left:none;
    border-right:none;
    Border-top:none;
    border-radius: 0;
    position: relative;

    thank you!

    #1467291

    Hi,

    Great, I’m glad that you got things working. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1467279

    try this as selector above in the snippet from: https://kriesi.at/support/topic/disable-image-title-tooltip-on-hover/#post-1467222
    var links = document.querySelectorAll('a, img, *[title]');

    #1467278
    Guenni007
    Participant

    it is a bit different to all others. – so maybe it would be better to have:

    #top #wrap_all .av-social-link-twitter a:focus, 
    #top #wrap_all .av-social-link-twitter:hover a {
      color: #fff;
      background-color: #000;
    }

    This seems to be in line with twitter’s corporate design – and is also similar to the behaviour of all other share links on enfold.

    #1467276
    DianaLoola73
    Participant

    Dear Support Team

    Yesterday we had the launch of the new WEbsite: https://heilpraktiker-wittmann.de/
    Now there is a problem in the following section in the mobile version: https://heilpraktiker-wittmann.de/#overview
    > The last box is cut off on mobile: see screenshot mobile: https://heilpraktiker-wittmann.de/support/Box-Mobile202409.jpg

    The funny thing is that we already had this problem in the edited version of the website (under a subdomain that is now no longer accessible): see https://kriesi.at/support/topic/content-column-cut-off-mobile-version/#post-1464807
    I have not changed the script, except that I have set the max-width to 990px and the height to 850px:
    @media only screen and (max-width: 990px) {
    #cell-blue {
    height: 850px;
    }
    }

    I really don’t understand it at all. Could you please help me?
    What can I do so that the dark blue box is also completely displayed in the mobile version?

    Best regards, Diana

    #1467259

    Hi,

    Thank you for the update.

    You can use this css code to hide the category list:

    .html_elegant-blog #top .avia-content-slider .blog-categories {
        display: none;
    }

    Best regards,
    Ismael

    #1467255

    Hi,

    Thank you for the info.

    We added this code to the Quick CSS field and temporarily disabled the compression settings.

    #top .main_color .avia-cookie-consent-modal-buttons-wrap .avia-color-theme-color-highlight:hover {
       background: var(--dark1-color) !important;
      color: white !important;
    }

    Best regards,
    Ismael

    #1467228

    Hey Monika,

    Try to replace this:

    
        border: 2px solid transparent; 
        border-bottom-color: #434b5b;
        border-top-color: transparent;

    With this:

    
    border-bottom: 2px solid #434b5b;

    Best regards,
    Rikard

    #1467222

    Hi,
    I see that you are getting the error: Uncaught ReferenceError: jQuery is not defined
    Please try this snippet instead:

    function temporary_removal_title_tags(){
    ?>
    <script>
      window.onload = function() {
          var links = document.querySelectorAll('a , img');
          for (var i = 0; i < links.length; i++) {
              var link = links[i];
              link.onmouseover = function() {
                  this.setAttribute("org_title", this.title);
                  this.title = "";
              };
              link.onmouseout = function() {
                  this.title = this.getAttribute("org_title");
              };
              link.onclick = function() {
                  this.title = this.getAttribute("org_title");
              };
          }
      };
    </script>
    <?php
    }
    add_action('wp_footer', 'temporary_removal_title_tags');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Thanks to Guenni007
    If this doesn’t help please include a admin login in the Private Content area so we can examine

    Best regards,
    Mike

    #1467219
    Monika
    Participant

    Hey There,

    when i change fields to just show the bottom border I always see a peak at the end, its not a hard ending. See Screenshot attached.
    How can I change the css to improve the look?

    /*kontaktformular linien */
    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        background-color: transparent;
        border: 2px solid transparent; 
        border-bottom-color: #434b5b;
        border-top-color: transparent;
        border-radius: 0;
        position: relative;
    }

    Thank you
    Cheers
    Monika

    #1467204

    Dear Mike,
    Could you be so kind to open Safari on any iPhone and reach https://buzaevclinic.ru. At the left of the url at the top of the screen you will see “Aa” symbol. Press it. It will activate “Reader mode” and this reader mode will show you only one middle block of the website.
    Some users use this mode by default and search engines too. This error means that my website can be seen only partly for engines or users. If it is impossible to fix, it is reasonable to have “turn off reader mode or you will not see important information” message.

    Rustum
    Participant

    I previously used {wp_post_ID} to dynamically get the Post ID of the current page on a button (Button Link > Set Manually)

    My manual link is /contact-an-integra-specialist?iframe=true&product_id={wp_post_ID} for example, but the {wp_post_ID} part of the link does not output the Post ID anymore.

    Please see as well previous ticket, where I had this working: https://kriesi.at/support/topic/post-id-formatting-on-new-post-data-feature-on-button-element/

    Kindly advise on how can I fix this.

    Thanks.

Viewing 30 results - 3,631 through 3,660 (of 142,852 total)