推文在其容器中顯示爲position: absolute
,所以他們忽略填充。
把填充的外層div代替,然後調整頭:
.widget_rotatingtweets_widget {
padding-left: 15px;
}
.widget_rotatingtweets_widget h4 {
margin-left: -15px;
}
編輯:上面,用另外的調整,以邊界並且這樣,將工作,但可能有一個稍微容易的解決方案。
而不是使用填充,給旋轉tweets容器左邊距。在你的style.css文件(可能是線102),還有一個選擇:
#content .rotatingtweets,
#content .norotatingtweets {
border-top: 1px solid #DDD;
border-bottom: 1px solid #DDD;
margin-bottom: 3%;
}
如果將其更改爲:
#content .rotatingtweets,
#content .norotatingtweets {
margin-bottom: 3%;
margin-left: 15px;
}
和之前移動邊界的元素和rotatingtweets後容器:
.sidebar .widget_rotating_tweets .widget_title {
border-bottom: 1px solid #DDD;
}
.widget_rotating_tweets .follow-button {
border-top: 1px solid #DDD;
}
這似乎達到你想要的。
您有分享鏈接嗎? – CristiC 2015-03-03 00:23:45
這是在coa.menloschool.org – JulietKiloMike 2015-03-03 00:32:28