我为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;
}
我还需要在移动设备中将其设为相同的颜色。怎么办?
答案 0 :(得分:2)
只需更新你的风格。
.header_number a{...}
将DOT添加到班级名称。
答案 1 :(得分:1)
更改
header_number a{
到
.header_number a{
你遗漏了DOT(。)。