Site logo

[Resolved] Problems with Google

Home Forums Support [Resolved] Problems with Google

Home Forums Support Problems with Google

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #2402375
    Michael

    Google Search Console has detected three problems on my website.

    – Clickable elements are too close together (I think this is about the distance between text and Youtube videos, which is extremely small).
    – Content wider than screen (Can’t figure this out).
    – Text is too small to read (Must be about the caption)

    I tried to fix the problems myself, but failed due to lack of knowledge. Can you help me?

    Here is an example: https://filmkult.ch/beckett-2021/

    #2402914
    Leo
    Staff
    Customer Support

    Hi Michael,

    Can you go through the steps here first?
    https://docs.generatepress.com/article/text-too-small-to-read-and-clickable-elements-too-close-together/

    Let me know 🙂

    #2403524
    Michael

    Thank you for your answer. My WordPress-knowledge is quite limited.

    How can I change the fond size for the caption?

    And how can I change the distance between elements? Or is there a problem with the software? Because only the Youtube-Video is too close to the next element.

    #2404073
    Fernando
    Customer Support

    Hi Michael,

    Can you check you robots.txt file and ensure that relevant resources including /wp-admin/ are not disallowed? This file can be found in the root directory of your website, along with your wp-config.php file etc.

    Reference: https://docs.generatepress.com/article/text-too-small-to-read-and-clickable-elements-too-close-together/#blocked-by-robots-txt

    Some needed resources may have not been loaded upon testing. See: https://share.getcloudapp.com/5zuPx58W

    Because of this, the test result may be a false positive.

    To change the font settings of a figcaption, go to Appearance > Customize > Typography, and create a new Typography rule in the Typography manager.

    Set the Target Element to custom - figcaption, then make the modifications. Example: https://share.getcloudapp.com/6quGyD9n

    As for the spacing for video embeds, try adding this in Appearance > Customize > Additional CSS:

    figure.wp-block-embed.is-type-video {
        margin-bottom: 20px;
    }

    It shouldn’t be a Software issue. This CSS should add spacing under video embeds for all devices, no matter what the Software is.

    #2404338
    Michael

    Thank you for your answer.

    My Robot-File loocks like this:

    # START YOAST BLOCK
    # —————————
    User-agent: *
    Disallow:

    Sitemap: https://filmkult.ch/sitemap_index.xml
    # —————————
    # END YOAST BLOCK

    For the spaces, I’ve added the CCS, but It did not work.

    What I’ve realised: When I use a image caption for the youtube video, the problem with the space is gone. That’s good enough for me.

    But what I don’t get: why is the font size from the image caption of the youtube video different from a regular picture?

    #2404605
    David
    Staff
    Customer Support

    Hi there,

    When I see all 3 of those errors listed together then i know from experience it is rarely ever related to a specific setting on your site that needs addressing. eg. increasing a font size for example.

    Instead, those errors are commonly reported together when Google Bot is not able to load the necessary resources e.g CSS stylesheets that are required to render your webpage correctly.

    There are several reasons that those styles may not load, the main 3 are:

    1. robots.txt was blocking Google from loading it.
    Google mobile friendly test will report the issue as blocked by robots.txt
    Your robots.txt is fine. This is not the issue.

    2. server error eg. 404 or 503 etc.
    Google mobile friendly test will report the issue as -- the relevant server error --
    I checked your site for these issues and there were none.

    3. Google Bot did not have the available crawl quota to load ALL of the necessary resources at the time of testing.
    Google mobile friendly test will report the issue as Other

    I am confident that the issue is #3. As it is for 99% of cases we see.

    So what is happening here?
    Google has limited server resources that it assigns to crawling and renderings sites. Some refer to this as the Crawl Quota. That Quota is split across many sites, and during busy times there is just not enough to go around, so it fails to load all the resources and moves on.

    To confirm this is the case i ran a mobile friendly test on the URL you provided:

    https://www.screencast.com/t/Z6zw8nEFOG0W

    As you can see it passed, which means at this time Google had enough quota to load all the resources.
    I also ran a Pagespeed (Lighthouse) test, and none of the above errors get reported.

    So this is definitely a False Positive case for Google bot.

    What can you do to minimise* the chance of this happening?

    Build websites that require less resources to render correctly.
    Optimize those resources so they have smaller payloads and can be loaded faster.
    Run the site on a good server to minimise delays between requests and transfer.

    I checked your site, and it is really well optimized, So nothing is required here.

    * I say minimise, as you cannot STOP it from happening, as Google admit there servers and algos do get it wrong sometimes.

    What to do next ?

    Try recrawling those pages in the search console.

    #2404633
    Michael

    Thank you very much for your help. I will recrawl those pages again.

    One final question: the image caption for the youtube video and the picture in my post have a different font, a different size and a different position.

    See here: https://filmkult.ch/piggy-2022/

    How can I make the image caption for both elements uniform?

    Thanks again for your help, I really appreciate this.

    #2404722
    David
    Staff
    Customer Support

    Try this CSS:

    
    .wp-block-embed figcaption {
        font-size: 13px;
        text-align: center;
        margin-top: .5em;
        margin-bottom: 1em;
    }
    #2405213
    Michael

    Sadly, it did not work.

    Edit: It did 🙂

    Thank you very much for your help.

    #2405362
    Michael

    Something else caught my eye. The text under the Youtube video is centered in the desktop version, but not when I access the page from a mobile browser. Also, on the mobile Version, the Text is bigger.

    Same for the image caption for all regular pictures. When i switch to mobile view, the text is in the default size. Even I changed it by adding a additional CSS.

    }
    .wp-block-embed figcaption {
    font-size: 15px;
    text-align: center;
    margin-top: .5em;
    margin-bottom: 1em;
    }
    .wp-block-image figcaption {
    font-size: 15px;
    }

    Am I missing something?

    #2405532
    Fernando
    Customer Support

    Hi Michael,

    You placed the code provided by David in a media query that allows it to work only for screen sizes greater than 1000px.

    You’ll need to take it out of that media query to make it work for mobile as well.

    The same goes for image captions. You placed the code inside the media query as well.

    #2406961
    Michael

    Oh! Thanks again for your help!

    #2407216
    Fernando
    Customer Support

    You’re welcome Michael!

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.