移动版网站手机号码始终为白色

时间:2013-09-25 06:32:12

标签: html css mobile mobile-website mobile-devices

我为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;
}

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

2 个答案:

答案 0 :(得分:2)

只需更新你的风格。

.header_number a{...}

将DOT添加到班级名称。

答案 1 :(得分:1)

更改

header_number a{

.header_number a{

你遗漏了DOT(。)。

相关问题