0

mobile version为我的Wordpress website. 我创建了m.mysite.com。当我看到 m.mysite.com 时,手机号码显示我给的颜色(#000)。但在移动设备中,它总是显示White Color

代码是,

<div class="header_number">
    281-407-6199
</div>

CSS是,

.header_number{
    background: url(images/bg_3.png);
    background-color:#919191;
    text-align: center;
    font-family:Verdana;
    font-size:26px;
    color:#813010 !important;
    padding-top: 4px;
    padding-bottom: 23px;
}
header_number a{
    color:#813010 !important;
}

我还需要在移动设备中将其设置为相同的颜色。该怎么办?

4

2 回答 2

2

只需更新您的风格。

.header_number a{...}

将 DOT 添加到类名。

于 2013-09-25T06:36:07.977 回答
1

改变

header_number a{

.header_number a{

您在其中缺少 DOT(.) 。

于 2013-09-25T06:33:30.493 回答