Opened 6 years ago
#5159 new defect (bug)
Missing CSS on fr.wordpress.org/support/ (French translation of wordpress.org/support/)
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Component: | HelpHub (wordpress.org/documentation) | Keywords: | |
| Cc: |
Description
The image captions are missing some CSS code to display correctly on the French repository derived from https://wordpress.org/support/.
In English, the caption is displayed centered, grayed and with a reduced size like here: https://wordpress.org/support/article/using-images/#special-contents-using-images
The caption here "Gravatar in comments" is centered, color is 606a73 and size is 0.8em
In French, here is the result of the same wp-block-image:
https://fr.wordpress.org/support/article/using-images/#contenus-sp%c3%a9ciaux-utilisant-desimages
You can notice that the French "Gravatars dans les commentaires" caption is left-aligned, color is 32373c and size 1rem all inherited from body styles
This CSS code is missing on https://fr.wordpress.org/support/:
.wp-block-image figcaption {
font-size: 0.8em;
color: #606a73;
text-align: center;
}
English screenshot