我正在为我的摄影网站使用托管主机。网站的自定义只能通过添加CSS代码来完成。
在下一页中,我想将文本居中放置在中间(“ ROBERT POLLAI”),但是我无法找出访问该元素的正确CSS代码。
https://www.the-ninth.com/home1
任何有关如何实现这一目标的提示都将受到高度赞赏!
关于罗伯特
答案 0 :(得分:2)
只需添加此CSS即可。正如@Joykal在评论中提到的。
#content_page_wrapper h2 ._4ORMAT_content_pages_wrap a > span {
display: inline-block;
text-align: center;
}
答案 1 :(得分:1)
您可以在stylesheet.css文件的末尾添加以下代码。
#content_page_wrapper h2 ._4ORMAT_content_pages_wrap #text_1 {
text-align: center !important;
}
答案 2 :(得分:0)
edit text-align: left; from this CSS Code and text will center and delete another two text-align: left;
#content_page_wrapper h2 ._4ORMAT_content_pages_wrap a{
text-align: center;
}
content_page_wrapper h2 ._4ORMAT_content_pages_wrap #text_1{
text-align: left;
}
#content_page_wrapper h2 {
text-align: left;
}
答案 3 :(得分:0)
您可以文本对齐:center!important; 如果遇到问题,则还可以在上使用align =“ center”。所以你可以尝试。
答案 4 :(得分:0)
更改以下CSS:
#content_page_wrapper h2 ._4ORMAT_content_pages_wrap #text_1 {
text-align: center;
}