對於本網站的標題http://new.931thefan.com/ 我希望Listen Live在移動設備上查看時在徽標下方移動。現在,在移動設備上觀看時,現場圖標與徽標重疊,現在右移 。在移動設備上的HTML CSS問題
該代碼本身工作正常,但是當我放入WordPress主題是 不起作用
HTML
<div class="wrapper">
<div id="one"><a href="http://new.931thefan.com">
<img class=logo src="http://931TheFan.com/wp- content/uploads/2015/05/fan-logo-header2.png" alt="93.1 The Fan" width="199px" height="146px"/>
</a></div>
<div id="two"><a href="javascript:callLTR='WWSR-FM';grptuner='';file='';title='';ListenLive();" target="_self">ttest<img src="http://931TheFan.com/wp-content/uploads/2013/08/listen-live-fan.png" align="right" border="0"></a></div>
</div>
CSS
.wrapper {
border : 2px solid #000;
overflow:hidden;
}
.wrapper div {
min-height: 200px;
padding: 10px;
}
#one {
background-color: gray;
float:left;
margin-right:20px;
width:300px;
border-right:2px solid #000;
}
#two {
background-color: black;
overflow:hidden;
margin:10px;
border:2px dashed #ccc;
min-height:170px;
}
@media screen and (max-width: 400px) {
#one {
float: none;
margin-right:0;
width:auto;
border:0;
border-bottom:2px solid #000;
}
IMG.logo {
display: block;
margin-left: auto;
margin-right: auto }
}
如何有什麼想法我可以做這個工作?