2013-04-03 97 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>