Forum Replies Created

Viewing 30 posts - 271 through 300 (of 11,821 total)
  • Author
    Posts
  • in reply to: “Load more” on a page possible? #1487387

    Ultimately, this amounts to an infinite scroll page, doesn’t it? For such a page to have good SEO, the meta information must be readable, and only the performance-relevant elements should be read when necessary.

    in reply to: Different menu for the homepage #1487386

    well you got a page like this for your layout: https://kriesi.at/themes/enfold-photography/

    try:

    @media only screen and (max-width:767px) {
      #top .av-logo-container .inner-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "nav logo";
      }
    
      #top .av-logo-container:after,
      #top .av-logo-container .av-sidebar-social-container {
        background-color: gray;
      }
    
      .responsive #top #header .logo {
        grid-area: logo;
        width: unset !important;
        justify-self: end;
      }
    
      .responsive #top #wrap_all .main_menu {
        grid-area: nav;
        justify-self: start;
        width: unset !important;
        left: 0;
        right: unset;
        position: relative;
      }
    }
    
    /* === change the width values to your needs f.e. 500px instead of 350px  === */
    /* === burger slide-out from the leftside === */
    
    .av-burger-overlay-scroll {
      width: 350px;
      left: -350px;
      max-width: 100%;
      transition: all 0.5s cubic-bezier(0.75,0,0.25,1);
    }
    
    .html_av-overlay-side .av-burger-overlay-scroll {
      left: 0;
      max-width: 100%;
      transform: translateX(-350px);
      transition: all 0.5s cubic-bezier(0.75,0,0.25,1);
    }
    
    /* === hide header on home page === */
    
    @media only screen and (min-width:768px) {
      .html_header_sidebar #top.home #header {
        display: none !important;
      }
    
      .html_header_left #top.home #main {
        margin-left: -2px !important;  /* === to ensure there aren't any white flashes on the left  === */
        position: relative;
      }
    }
    in reply to: Function av_icon is deprecated since version 7.0! #1487259

    but you are loading some fonts – how do you load them. I see f.e. a roboto-slab – this is not inside the default drop-down for available fonts.
    Try to upload those fonts – by using the font-manager.

    i can see this console warning : downloadable font: glyf: empty gid 164 used as component in glyph 165 (font-family: “Roboto Slab” style:normal weight:100..900 stretch:100 src index:0) source: https://fonts.gstatic.com/s/robotoslab/v35/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2

    _____
    a similar Problem?
    btw. : have a look at: https://kriesi.at/support/topic/deprecation-warnings-clogging-up-my-error_log-file/

    in reply to: Diagonal section border apply only in one page #1487255

    and maybe then it would be nice to get rid of that small border too:

    .avia_transform .av-extra-border-element.border-extra-diagonal.border-extra-diagonal-inverse .av-extra-border-inner {
      background-color: #FFF;
    }
    
    #top .container_wrap {
      border-top-style: none;
    }
    in reply to: need help with video #1487237

    But main reason is that it is not a 16/9 aspect ratio video.
    Enter on that Video Aspect Ratio Field : 1920:814

    and remove that object-fit: cover rule – and even the background-color could be removed – everything fits with the right aspect-ratio

    Looks nice!
    U bent van harte welkom

    in reply to: Flip box behavior all wrong #1487218

    only one thing : the one ruleset inside the media query (see Link ) : the hyphens: auto had to be set to !important

    hyphens: auto !important;

    in reply to: Open Sans ZIP #1487204

    you can upload that font-file in a separate zip. i offered it here : https://webers-testseite.de/OpenSans-Variable.zip

    you can choose it the same way as the static font on the bottom of that dropdown list.

    in reply to: Flip box behavior all wrong #1487183

    could you please insert the needed Rest of css Code :

    https://kriesi.at/support/topic/flip-box-behavior-all-wrong/#post-1487126

    in reply to: DIsable lightbox with noLightbox class #1487160

    can you see in DOM that those classes are added?
    how did you insert your snippet ot wordpress?

    f.e. in child-theme functions.php:
    btw. you place your sbi shortcode to your content – why don’t you give the parent element (f.e. color-section a custom class: noLightbox ) – i did it that way !

    function add_noLightbox_class_to_sbi_link(){
    ?>
    <script>
    window.addEventListener("DOMContentLoaded", function () { 
      (function($){
          $('.sbi_link').addClass('noLightbox');
      })(jQuery);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_noLightbox_class_to_sbi_link');
    in reply to: DIsable lightbox with noLightbox class #1487157

    maybe it is best to give the class to one of its parents ( not the anchor element itself)

    f.e.:

    jQuery(document).ready(function() {
    	jQuery('.sbi_link').addClass('noLightbox');
    });
    in reply to: Flip box behavior all wrong #1487146

    by the way – is it intentional that you have both menu-items and burger menu icon – on large screens?
    it is much easier to have multiline main menu on displaying it as flex box.

    in reply to: Site crashed when upgrading to PHP 8.3 #1487143

    Can you see your child-theme functions.php on: Dashboard – Appearance – Theme File Editor ? click on the right side the “Theme Functions” functions.php and see what is the content on line 32 and following.

    May be you post that block you have entered there.

    in reply to: Small fullwidth separator #1487141

    Yes that is a nice idea.

    in reply to: Flip box behavior all wrong #1487129

    and in addition – some magic of “container-type” property and font-size adjust via cqi
    to have more legible font sizes!

    @media only screen and (max-width: 989px){
      #top .gridded-flipbox .avia-icongrid-flipback  .avia-icongrid-inner {
        padding: 20px !important;
      }
    
      #top .gridded-flipbox .avia-icongrid-flipback {
        container-type: inline-size;
      }
    
      #top .gridded-flipbox .avia-icongrid-flipback p {
        hyphens: auto;
        font-size: 9cqi;
        line-height: 1.5em
      }
    }
    in reply to: Flip box behavior all wrong #1487126

    so first try this in addition to my code from example page:

    #top .gridded-flipbox .avia-icongrid-wrapper, 
    #top .gridded-flipbox .article-icon-entry {
      width: 100%;
      height: 100%;
      min-height: unset !important;
    }
    
    @media only screen and (min-width: 990px){
      #top .gridded-flipbox .avia-icongrid-flipback  .avia-icongrid-inner {
        padding: 10px !important;
      }
      #top .gridded-flipbox .avia-icongrid-flipback p {
        hyphens: auto
      }
    }
    in reply to: Flip box behavior all wrong #1487125

    i found your site – and i see that you have set the min-height option – remove that
    See on the element on Styling – Grid Styling – “Minimum Height – For Flipbox Only”

    Unfortunately, few of my fellow participants have the courage to publicly post links to their websites here. Otherwise, it would surely have been resolved by now.

    you only had to adjust that one rule:

    #top .gridded-flipbox .avia-icongrid-wrapper, #top .gridded-flipbox .article-icon-entry {
      width: 100%;
      height: 100%;
      min-height: unset !important;
    }

    and maybe you set the gap a bit smaller than 30px

    in reply to: Flip box behavior all wrong #1487089

    have you set the custom class on the element?

    the element (Icon/Flipbox Grid) itself got that custom class: gridded-flipbox

    and if aspect-ratio does not exist, why does it work on my site? (Enfold 7.1.1)
    there is a porperty : aspect-ratio – see:

    https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio


    btw: the declaration is :
    aspect-ratio: width/height;
    but there is a shortform – that if there is no height value – height is 1

    so :
    aspect-ratio: 1/1 can be written as aspect-ratio: 1

    All is based on the square source images – grid layout and – background-size: contain.

    in reply to: Flip box behavior all wrong #1487078

    have you seen my page: https://webers-testseite.de/gridflip/

    in reply to: Audio Player – how to not show cover? #1487075

    because i do not see any cover on your page- do you solve it?

    #top .wp-playlist-current-item img {
      display: none;
    }

    ___________
    or do you mean : how to show them?
    if you like to have cover:
    on element (audio player) – player tab: do not enter a cover image ( only if you like to have for all items in the playlist the same cover)
    on “Media Icon/Album Cover”
    now your audio files must have an embedded cover. – you can see if the file got an embedded cover on media-library popup – when you choose your files:
    i embed a cover to your file and uploaded it to my text page – :

    in reply to: Flip box behavior all wrong #1487008

    see again that example page with a possible solution. Using display: grid seems to be the best for that.
    Read carefully – you had to give the Icon/Flipbox Grid a custom class. The css code you need is on that page.

    But – If the text is very long, it could cause problems on narrow screens when the site becomes responsive.

    https://webers-testseite.de/gridflip/

    in reply to: Site crashed when upgrading to PHP 8.3 #1487007

    I have now updated all of my installations to PHP 8.3 or higher. Some of my customer providers already offer PHP 8.4. I have never had any problems switching. Therefore, I assume there is high compatibility with current PHP versions. My overloaded test site runs under PHP 8.4.7. For example, the child-theme functions.php has over 5,000 lines, and the quick CSS is already over 9,700 lines long. (webers-testseite.de).

    Why don’t you try going back to smaller PHP versions one at a time? It may take a while for this to take effect. Then, see if your installation works with your provider.

    in reply to: Flip box behavior all wrong #1486976

    see here an example page with different scenarios.
    on the centered flipbox there is backside first ! so you can see what the height of the flipbox determines ( if you have not choosen a min-height on the options).
    See on the last flipbox – what happens if you have a big original image inserted – but with no-repeat – no stretch.

    https://webers-testseite.de/gridflip/

    in reply to: Flip box behavior all wrong #1486975

    Now, please could you explain how this is supposed to work with a responsive layout, where the width of the grid cells changes according to the width of the screen?
    The size of the Flipbox depends on your content, not the images (as these are defined as background images).

    Firstly, please explain where the images are located. Are they on the front or back? It is also important to specify which element should be displayed first. You also have the option of displaying the back first and then the front on hover.
    What options did you choose on background-image

    maybe you can make the link public – that even me and other participants can inspect the problem.

    in reply to: Open Sans ZIP #1486970

    btw: using variable fonts can be very interesting – but there are a lot of new css declarations to know – see here a playground:
    https://variablefonts.io/about-variable-fonts/

    Wenn du also doch lieber mit einem selbstgehosteten OpenSans arbeiten möchtest. Dann sag bescheid – welche Schriftschnitte du brauchst, dann lade ich das file auch hoch.

    PPS: übrigens OpenSans ist ja noch harmlos, RobotoFlex ist ein Super Variabler Font mit mehreren Axen die bedient werden können:

    Firefox (Developer Version) hat für Schriftarten einen eigenen Reiter, an dem man herumspielen kann mit diesen Einstellungen. Wenn man dann mit dem Resultat zufrieden ist, geht man zurück zum Regelsatz, und kann sich das als css heraus kopieren:
    (das Element für das du dann rumgespielt hast, muss dann noch durch den eigentlichen Selektor ersetzt werden)

    Element {
      font-size: 140px;
      line-height: 1.1em;
      letter-spacing: 5px;
      font-weight: 612;
      font-stretch: 113%;
      font-variation-settings: "opsz" 8, "GRAD" 87;
      font-style: oblique 7.45deg;
    }
    in reply to: Open Sans ZIP #1486968

    In this context, I would like to ask you a general question. The following picture shows what happens when you uploaded the font.

    If I want to use variable fonts, I upload static and variable fonts in separate ZIP files.


    and:

    You can then use the variable font style only for your page and, as the name suggests, define the weight and width variables for Open Sans, for example. There are predefined settings internally. So, if you are still using the old designations, such as ‘Condensed Semibold’ then would be wght: 600; wdth: 75%
    This means that the font is rendered as font-weight:600 and the letters would be 75% wide.

    In the meantime, it seems to be justifiable to use only the variable font.
    However, if you only need a few font styles, it may be more performant to upload only the few static font styles. For example, just one zip file containing only OpenSans 300, 400 and 700. With many fonts, the italic font rendered by the browser differs only slightly from the dedicated italic font (this is mainly the case with serif fonts)

    PS: So my advice is. Upload only the varialbe font. Make sure that the woff2 files are included in the zip. They are even smaller as a file and are rendered faster by the browser.
    And here is the problem: Google only offers ttf as font files. I created with a comandline tool the ttf to woff2 files:
    OpenSans-Variable.zip

    in reply to: lightbox issues #1486930

    Something like that makes me sad, when a solution is presented and there is no response since the question was posted.

    How did you create this image with text underneath?

    See here : https://webers-testseite.de/mie-2/

    in reply to: Enfold generating errors from WP SMTP Mail plugin #1486916

    Mailer: Other SMTP
    SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: Spam message rejected
    SMTP code: 554 Additional SMTP info: 5.7.1

    ______

    i use smtp mail very often – and if your settings are ok. there are no errors at all.
    As mentioned above – check your DNS settings of the concerning Domain.

    see here : Listpoints 3,4,5,6
    https://www.courier.com/error-solutions/smtp-error-554

    Whether an email is considered spam or not depends on the recipient. If the SPF record is missing, some recipients will accept it, while others will immediately classify it as spam. The same applies to DMARC1.

    in reply to: Logo zu klein #1486885

    bei dem grünen Logo bitte auch die original Größe einsetzen!

Viewing 30 posts - 271 through 300 (of 11,821 total)