2013-04-03 67 views
0

由于某种原因,我得到了一个奇怪的白线上我的元素之一。奇怪的白线

继承人它的样子:

enter image description here

其旁边左侧的介绍。

我通过代码看,并不能似乎找到它

其位于http://divisionforty.com

我不知道问题出在哪里,所以我不能发布任何代码。

+4

不看代码。使用DOM检查器找出它。例如在Firefox中,右键单击该行,然后“检查元素(q)” –

回答

0

所有的答案是伟大的!然而事实证明,我已阻塞部分的代码用逗号

此:

/* Title Right ----------------------------*/ 

.title_right, .title_right_services_page h3{ 
    color: #bd2d67; 
    padding: 0; 
} 
.title_right, .title_right_services_page h1{ 
    line-height: 45px; 
} 
.title_right, .title_right_services_page p{ 
    color: #777; 
    font-size: 21px; 
    line-height: 30px; 
    font-weight: 200; 
} 
.title_right_services_page{ 
    border-left: 2px solid #cdcdcd; 
    position: relative; 
    text-align: right; 
    padding:0 0 30px 1%; 

} 
.title_right,{ 
    border-left: 2px solid #cdcdcd; 
    position: relative; 
    text-align: right; 
    padding:0 0 30px 1%; 
} 
.arrow_right{ 
    background: url("../img/arrow_right.png") no-repeat center; 
    position: absolute; 
    width: 53px; 
    height: 49px; 
    left: -40px; 
    top: 40%; 
} 
.arrow_rightb{ 
    background: url("../img/arrow_rightb.png") no-repeat center; 
    position: absolute; 
    width: 53px; 
    height: 49px; 
    left: -40px; 
    top: 40%; 
} 

要这样:

/* Title Right ----------------------------*/ 

.title_right h3{ 
    color: #bd2d67; 
    padding: 0; 
} 
.title_right h1{ 
    line-height: 45px; 
} 
.title_right p{ 
    color: #777; 
    font-size: 21px; 
    line-height: 30px; 
    font-weight: 200; 
} 
.title_right{ 
    border-left: 2px solid #cdcdcd; 
    position: relative; 
    text-align: right; 
    padding:0 0 30px 1%; 

} 

这定了!

感谢所有

丹佛

0

该行来自span.arrow_right

0

这是HTML的该位:

<span class="arrow_right"></span>