Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • mextro

    (@mextro)

    Hi friends, fixed it on my side, it was related to the class with image ID on the backend of image generation. My setup is WEBP uploads from wp performance team, ACF Photo Gallery Field and meow lightbox

    <a href="<?php echo $full_image_url; ?>">
    <img class="wp-image-<?php echo $id; ?>" src="<?php echo $thumbnail_image_url;?>" alt="<?php echo $alt; ?>" title="<?php echo $title; ?>">
    </a>
                                   
    Thread Starter mextro

    (@mextro)

    Changed it into this and now it’s perfect!! Big thanks pal

    @media screen and (max-width: 800px) {
    .article__headline h2 {
     font-size:79px;
    padding-bottom: 30px
     }
    }
    @media screen and (max-width: 480px) {
    .article__headline h2 {
     font-size:65px;
    	padding-bottom: 30px
     }
    }
    
    @media screen and (max-width: 800px) {
    .article__headline h1 {
     font-size:30px;
     }
    }
    @media screen and (max-width: 480px) {
    .article__headline h1 {
     font-size:20px;
    
     }
    }
    Thread Starter mextro

    (@mextro)

    Thanks Dimitri that works, I think I can tweak it a little for it to work on both headings. ??

Viewing 3 replies - 1 through 3 (of 3 total)