1. ホーム
  2. javascript

[解決済み] DIVとDIVの間にスペースを入れるには?

2022-02-26 05:16:51

質問

WordPressで作成したページで、ページのヘッダーの下にAdSenseを設置したいのですが、どうすればいいですか? 以下の画像をご覧ください。 http://imgur.com/WPXeG

ヘッダーとAdSense広告の間に余白を作りたいのですが、どうすればいいですか? AdSense広告を含むdivにmargin-topとpaddingを追加してみましたが、すべて無駄でした。

<div style="text-align: center; margin-top: 5px; padding: 13px 0 10px 0;">
  <script type="text/javascript"><!--
    google_ad_client = "**************";
    google_ad_slot = "**************";

ヘッダーとAdSense広告の間に空白を設けるにはどうしたらよいですか?

P.S. サイトは http://phoneswithwindows.com/

解決方法は?

cssを記述する

#access {
  margin-bottom: 5px; /* or whatever */
}