Forum Replies Created

Viewing 30 posts - 1,321 through 1,350 (of 66,839 total)
  • Author
    Posts
  • in reply to: Overlapping sections #1483365

    Hi,

    Try to edit the Color Section with the ID “comment”, go to the Advanced > Developer Settings then replace the value in the Custom ID Attribute field.

    Best regards,
    Ismael

    in reply to: Advanced Layout Editor not complete #1483364

    Hey pachnerweb,

    Thank you for the inquiry.

    We checked the site but we are not yet sure why the builder is not loading properly. The builder loads fine on our end with the same version of the theme, 7.1. Have you tried deactivating the plugins? Also, try to download the latest version of the theme from your Themeforest account again, then re-update the theme via FTP.

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

    Best regards,
    Ismael

    in reply to: Update to 7.0 and 7.1 failing #1483328

    Hey Rod,

    Thank you for the inquiry.

    Did you extract the actual enfold.zip file from the ThemeForest package? If the issue persists, you may need to update the theme manually via FTP.

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

    Best regards,
    Ismael

    in reply to: filter: avf_dynamic_css_after_vars #1483327

    Hi,

    This is what we see on a clean installation of version 7.1.

    View post on imgur.com

    And only –enfold-font-size-theme-content is declared in the themes/enfold/css/dynamic-css.php file, line 108.

    Best regards,
    Ismael

    in reply to: arrow to go back up for mobile and viewing testimonials #1483326

    Hi,

    Have you tried hiding the testimonial section on mobile view? You can toggle the Element Visibility settings in the Advanced > Responsive panel.

    View post on imgur.com

    You can also use this css code to adjust the size of the testimonial section on mobile view:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial {
        padding: 0;
        font-size: 0.85em;
      }
    
      #top .av-large-testimonial-slider .avia-slideshow-arrows {
        position: absolute;
        width: 100%;
        bottom: 50px;
      }
    
      #top .avia-slideshow-arrows a.next-slide {
        right: -30px;
      }
    
      #top .avia-slideshow-arrows a.prev-slide {
        right: auto;
        left: -30px;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Ansicht der Kategorieseite im Blog #1483325

    Hi,

    Thank you for the update.

    Which blog layout did you choose? Instead of adjusting the blog layout settings, try to add this filter in the functions.php file to change the blog style or layout of the category pages.

    add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); 
    function avf_blog_style_mod($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }

    This should set the category pages to a grid layout.

    Best regards,
    Ismael

    in reply to: Fullwidth easy slider not responsive on mobile #1483324

    Hi,

    adjusting the slider’s image size for mobile so it runs full height?

    You can replace the Fullwidth Easy Slider with Fullscreen Slider or use both, then adjust the Advanced > Responsive > Element Visibility settings to toggle the display of the sliders. You’ll have one slider for desktop and another for mobile view.

    To adjust the position of the caption, go to the Styling > Caption panel, then adjust Caption Positioning settings.

    Best regards,
    Ismael

    in reply to: Overlapping sections #1483323

    Hey MomentumMarketingSupport,

    Thank you for the inquiry.

    You may need to avoid using the ID “comment” for the color section because this css rule gets applied to it.

    #comment {
        width: 602px;
        height: 150px;
        padding: 10px 7px;
        font-size: 12px;
        margin: 0;
    }

    This is how it looks when the height property is disabled.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Transparent mobile header #1483321

    Hey fanlokbun,

    Thank you for the inquiry.

    You can use this css code to hide the logo on mobile view and make the header transparent.

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .av_header_transparency {
        position: fixed;
        background-color: transparent;
      }
    
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg,
      .responsive #top .logo {
        display: none;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Navigation Bar search widget SVG image #1483320

    Hi,

    Have you tried removing the css code? Keep the css rules with the #chsearchbox selector, or replace it with:

    #top #chsearchbox #searchsubmit, #chsearchbox .ajax_load {
        width: 62px;
        height: 100%;
        line-height: 40px;
        position: absolute;
        right: auto;
        top: 0px;
        z-index: 2;
        min-width: 40px;
        left: 8%;
        padding: 0px;
        margin: 0px;
        border-radius: 0px;
        background: url("https://riseandshine.childrensnational.org/wp-content/uploads/2017/07/ch-search-icon.png") center center / contain no-repeat;
        background-position: center center;
    }
    

    Best regards,
    Ismael

    in reply to: Links Tab Section #1483319

    Hey Diana,

    Thank you for the inquiry.

    Are you trying to make the document automatically scroll and open the tabs when the links are used? If so, you can try adding this script in the functions.php file:

    add_action('wp_footer', function() {
        ?>
        <script>
        document.addEventListener('DOMContentLoaded', function() {
            (function($) {
                function scrollToTab(selector, eventType) {
                    $(selector).on(eventType, function(e) {
                        var hash = eventType === 'load' ? window.location.hash : $(this).attr('href').split('#')[1];
                        if (!hash) return;
                        var tab = $('.av-section-tab-title[href="#' + hash + '"]');
                        if (tab.length) {
                            var parent = tab.closest('.av-tab-section-outer-container');
                            var pos = parent.offset();
                            tab.trigger('click');
                            setTimeout(function() {
                                $(window).scrollTop(pos.top - 100);
                            }, 100);
                        }
                    });
                }
                scrollToTab('.avia-buttonrow-wrap a', 'click');
                scrollToTab(window, 'load');
            })(jQuery);
        });
        </script>
        <?php
    });
    

    Best regards,
    Ismael

    in reply to: Tablet version Grid Row #1483318

    Hi,

    Glad we could be of help! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: filter: avf_dynamic_css_after_vars #1483273

    Hey Guenter,

    Thank you for the inquiry.

    We can’t find the enfold-font-size-content-font variable anywhere in the theme — only enfold-font-size-theme-content. Where did you see the enfold-font-size-content-font variable?

    Best regards,
    Ismael

    in reply to: Fullwidth easy slider not responsive on mobile #1483272

    Hey dryo1,

    Thank you for the inquiry.

    Have you tried adjusting the Styling > Font Sizes settings? You can set different values for different screen sizes.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Ansicht der Kategorieseite im Blog #1483271

    Hey agentur2c,

    Thank you for the inquiry.

    You can change the layout of the archive or category page by adjusting the Enfold > Blog Layout > Blog Styling and Blog Layout settings. Please check the screenshot below:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Issue with tabs #1483270

    Hey pbouquet,

    Thank you for the inquiry.

    It might be due to the iframe inside tab 14. It’s possible that it has a built-in script that forces the document to scroll to the iframe once it loads.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We don’t really see any issues when the grid breaks onto a second line — that’s how the grid is supposed to display on smaller screens. Would you mind providing a screenshot? The clip above doesn’t clearly show the issue you described.

    Best regards,
    Ismael

    Hi,

    As mentioned above, this is not possible without significant modification. You may need to create a script to adjust the position of the ajax_search_response container on scroll. You can try the following css code, but it will also adjust the position of the search results container even when the page has not been scrolled.

    .ajax_search_response {
        top: 136.5px !important;
    }

    Best regards,
    Ismael

    in reply to: Navigation Bar search widget SVG image #1483267

    Hey GWS,

    Thank you for the inquiry.

    Did you add the following css code somewhere? The previous css code should not have affected the default search field because it was specific to the search form inside the #chsearchbox container.

    #top #searchsubmit, .ajax_load {
        width: 62px;
        height: 100%;
        line-height: 40px;
        position: absolute;
        right: auto;
        top: 0px;
        z-index: 2;
        min-width: 40px;
        left: 8%;
        padding: 0px;
        margin: 0px;
        border-radius: 0px;
        background: url("https://riseandshine.childrensnational.org/wp-content/uploads/2017/07/ch-search-icon.png") center center / contain no-repeat;
        background-position: center center;
    }

    Best regards,
    Ismael

    in reply to: Show Password Icon missing #1483265

    Hi,

    We’ll forward the thread to our channel. Thank you for the fix!

    Best regards,
    Ismael

    in reply to: Grid Blog Post Padding #1482623

    Hey a_edemirci,

    Thank you for the inquiry.

    Have you tried adjusting the padding of the Color Secetion containing the Blog Posts element?

    View post on imgur.com

    If this is not what you’re looking, provide the site URL in the private field so we can check.

    Best regards,
    Ismael

    in reply to: easy slider caption background fullwidth #1482613

    Hi,

    You can try this css code:

    .caption_bottom .slideshow_caption .slideshow_inner_caption .slideshow_align_caption {
        padding-left: calc((100vw - 1200px) / 2 + 50px) !important;
        padding-right: calc((100vw - 1200px) / 2 + 50px) !important;
    }

    View post on imgur.com


    Best regards,
    Ismael

    in reply to: Website not updating – using Enfold theme #1482612

    Hi,

    Great! Please make sure your html tags are valid and properly closed. Let us know if the issue persists.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: going crazy withe text aling #1482611

    Hey Gianluca,

    Thank you for the inquiry.

    What happens when you remove this css code?

    .responsive .container {
        max-width: 1500px;
    }

    This overrides the Maximum Container Width value in the Enfold > General Layout > Dimensions panel.

    Best regards,
    Ismael

    in reply to: Templates Not Supported in Enfold 7.1? #1482606

    Hey twdf,

    Thank you for the inquiry.

    Are you referring to this Template button?

    View post on imgur.com

    Please provide the site URL and login details in the private field so we can check.

    Best regards,
    Ismael

    in reply to: Button row is stacking instead of side by side. #1482593

    Hey ricedean,

    Thank you for the inquiry.

    What happens when you toggle or temporarily disable the Enfold > Performance > File Compression settings? To temporarily fix the issue, try adding this code in the Quick CSS field.

    #top .avia-buttonrow-wrap {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
    }

    Best regards,
    Ismael

    in reply to: Layout Question For Grid Row Element #1482576

    Hi,

    Thank you for the kind words! Glad to know that you find LayerSlider useful in this case. If you have any more questions, feel free to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    Hey sitadi,

    Thank you for the inquiry.

    This is possible, but it will require modifications that are beyond the scope of support. The position of the search results is calculated based on the current position of the search field, but there is no function that recalculates it on scroll. For additional assistance, you can contact Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    You need to add the code to the functions.php file. It will only affect pages that use the av_textblock shortcode or the Text Block element. As mentioned earlier, you can replace the Blog Posts element with the Product Grid element, but you’ll need to install WooCommerce and create products first.

    Best regards,
    Ismael

    in reply to: Partner Logo slider for Mobile devices #1482564

    Hey manchust,

    Thank you for the inquiry.

    Did you add another logo slider for mobile view? Make sure that the Styling > Slider or Grid > Column count is set to 4, then add this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .slide-entry {
        width: 24%;
        margin-left: 2%;
      }
    }

    Best regards,
    Ismael

Viewing 30 posts - 1,321 through 1,350 (of 66,839 total)