我不能垂直居中文本

I cannot center text vertically

I cannot vertically center text as shown in this image. The site is based on WordPress. I do not know which class is responsible for this.

http://dergax.ayz.pl/ What causes the problem?

如果您说的是网站中途图片左侧黄色框中的文字,请转至 外观 > 自定义 > 附加 CSS

   .et_pb_row_0 p {
    position: relative !important;
    top: 200px;
}

这长期以来一直是 CSS 的祸根,但现在已使用 "flex" 框修复。在您的站点上,您应该将此 CSS 添加到具有 类 et_pb_row.et_pb_row_0:

的元素中
display: flex;
align-items: center;
justify-content: center;

这里有一些进一步的阅读:https://www.adam-bray.com/2017/02/17/simple-css-alignments-with-flexbox/

希望对您有所帮助