- This topic has 12 replies, 4 voices, and was last updated 3 years, 5 months ago by
Fernando.
-
AuthorPosts
-
November 5, 2022 at 1:20 am #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/
November 5, 2022 at 10:54 am #2402914Leo
StaffCustomer SupportHi 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 🙂
November 6, 2022 at 6:58 am #2403524Michael
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.
November 6, 2022 at 6:07 pm #2404073Fernando 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.
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/6quGyD9nAs 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.
November 7, 2022 at 12:22 am #2404338Michael
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 BLOCKFor 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?
November 7, 2022 at 4:34 am #2404605David
StaffCustomer SupportHi 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 asblocked 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 asOtherI 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.
November 7, 2022 at 5:00 am #2404633Michael
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.
November 7, 2022 at 6:33 am #2404722David
StaffCustomer SupportTry this CSS:
.wp-block-embed figcaption { font-size: 13px; text-align: center; margin-top: .5em; margin-bottom: 1em; }November 7, 2022 at 10:50 am #2405213Michael
Sadly, it did not work.
Edit: It did 🙂
Thank you very much for your help.
November 7, 2022 at 1:25 pm #2405362Michael
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?
November 7, 2022 at 5:35 pm #2405532Fernando 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.
November 8, 2022 at 1:03 pm #2406961Michael
Oh! Thanks again for your help!
November 8, 2022 at 5:02 pm #2407216Fernando Customer Support
You’re welcome Michael!
-
AuthorPosts
- You must be logged in to reply to this topic.