Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1045224

    Hi!
    I have a couple of issues in a project:

    The Partner/Logo Element can only show the elements caption on Mouse Over. We would like to make those captions visible at all time, especially on mobile devices below the Logo – how can we do this or would you suggest another layout element to do this?

    How can we change the initially loaded item on the register card element? If i change the order, the initially loaded element chages too, but it’s not the first. How does the theme define the order?

    The character encoding on Chrome in an Windows10 Environment. How can we get rid of the L SEP characters which appear on some places, see attached screenshot. Is this a theme issue?

    The Layout looks great on lower Resolutions but looks “limitless” on wide screens, please see attached screenshot. What is your best practice to have a nice fullscreen layout but limit this on very wide ratios?

    Thanks for your great work!
    Tobi

    #1046246

    Okay, we managed to solve character encoding problem. The other questions still persist.
    I’d like to precise the wide screen question: The behaviur we would love to have is a streched Layout with no frames, but a boxed layout starting on screens larger 1680px. We thought this would be possible by using the boxed layout by defining the max container with. But this changes nothing. What’s the solution please?

    #1047604

    Hi,

    Thank you for using Enfold. And sorry for the late response.

    1.) You can use the image element instead and add the text block for the caption.

    2.) What do you mean by “card element”? Could you give us a screenshot?

    3.) I haven’t seen that issue before. According to the forums, it is cause by a certain kind of font. Please try to use another font or add this code in the functions.php file.

    add_action('wp_footer', 'avf_script_remove_sep');
    function avf_script_remove_sep(){
    ?>
    <script type="text/javascript">
    $(document).ready(function() {
        $("body").children().each(function() {
            $(this).html($(this).html().replace(/&#8232;/g," "));
        });
    });
    </script>
    <?php
    }

    // https://stackoverflow.com/questions/41555397/strange-symbol-shows-up-on-website-l-sep/45822037

    We don’t usually entertain multiple inquiries on the same ticket or thread because it gets quite confusing for other users who are looking for same answer. One ticket/thread for each inquiry is preferred. Thank you for understanding.

    Best regards,
    Ismael

    #1048124

    Thank you Ismael,

    but is there a way to have ithe fullscreen, stretched Layout with no borders, but a boxed layout starting on screens larger 1680px for the whole website? We thought this would be possible by using the boxed layout by defining the max container with. But this changes nothing.

    Thank you in advance!

    #1048808

    Hi,

    It’s not possible with the boxed layout, unfortunately, because it will constrain the width of the slider. You have to use the “Stretched Layout”.

    Best regards,
    Ismael

    #1207618

    Hey @check-t,

    I was looking to do something similar to what you are looking for. I found a little trick that was quite simple and worked well.
    In the theme settings, I set my layout to Boxed Layout 1680px wide.
    Then I added some custom CSS to make the boxed layout go 100% wide instead of 90%.

    Here is the CSS I used.

    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        max-width: 100%;
    }

    I needed this to work because I used grid rows and didn’t like how content looked when at full screen on my 2560px wide monitor. Hope this helps!

    • This reply was modified 4 years, 2 months ago by dustingrof.
    #1207992

    Hi,

    Thanks for your help and insight on this!

    Best regards,
    Jordan Shannon

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Redering Issues in Chrome / Windows / Wide Layout Issues’ is closed to new replies.