2016-04-15 59 views
1

我在這裏有WP網站:http://www.agapegreekradio.com/中心球員元素

而我遇到了一些問題。我想要的文字和玩家爲中心:

enter image description here

這裏是我的代碼:

<div class="listen_section"> 
     <div class="container"> 
     <div class="row"> 
      <div class="col-lg-3 col-md-3 video_block"> 
      <h2>listen <span>live</span></h2> 
      <!--<img src="<?php //echo esc_url(get_template_directory_uri())?>/images/img3.png" alt=""/>--> 
      <?php dynamic_sidebar('online-radio'); ?> 
      </div> 
      <?php include_once('homesider.php'); ?> 
     </div> 
     </div> 
    </div> 

我不知道該怎麼居中。我該怎麼做?

請幫助您使用Google Chrome的檢查元素來檢查此問題。

謝謝!

+0

試圖把它周圍的中心標籤? –

回答

1

你需要在這個標籤使用以下類:

<div class="col-md-6 col-md-offset-3 video_block"> 
    // content goes here... 
</div> 

並刪除內嵌樣式margin: 0 auto ...

0

添加類文本中心以及行,分別用col-lg-12和col-md-12替換col-lg-3和col-md-3。

,並在樣式表補充一點:

DIV#serverroom.net {保證金:0汽車重要的;! }

希望這會起作用。

+0

我試過這個,但我有一個問題,居中文本h1看截圖:http://prnt.sc/asfy7g –

0

enter image description here

之前視頻塊DIV只需添加COL-MD-3格,使您的視頻塊DIV作爲COL-MD-6,給文字居中它。

+0

我試過這個,但我有一個問題,居中文本h1看截圖:http://prnt.sc/asfy7g –

+0

你製作視頻塊爲col-md-6嗎?因爲如果你給文本對齊中心,那麼文本應該根據其寬度居中。 –