首页 > 解决方案 > 如何在我的网页中插入垂直 AdSense 广告空间?

问题描述

如何在我的网页上为 google adsense 广告创建带有 div 或其他内容的垂直空间,我想在表格的左侧和右侧添加垂直 adsense 广告,请参见下图: https ://ibb.co/LNg52NJ

您可以在此处查看实时版本或检查代码: https ://translatesubtitles.com/browse_subtitle.php

这是表格代码:

<div class="row">
  <table id="example" data-order='[[ 0, "desc" ]]' class="table table-striped " style="width:100%">
    <thead>
      <tr>
        <th style="display: none">ID</th>
        <th>Name</th>
        <th>Language</th>
        <th>Author</th>
      </tr>
    </thead>

    <tbody>
      <?php
            include("sad.php");
            $query = "SELECT * FROM me order by id DESC";
            $result = mysqli_query($conn, $query);

            if(mysqli_num_rows($result) > 0){

                while($row = mysqli_fetch_array($result)){

                    ?>
        <tr>
          <td style="display: none"><?php echo $row['id']; ?></td>
          <td><a href="ed.php?id=<?php echo $row['id']; ?>"><?php echo $row['name']; ?></a></td>
          <td><?php echo $row['language']; ?></td>
          <td><?php echo $row['author']; ?></td>
        </tr>

      <?php }} ?>

    </tbody>

  </table>
</div>

标签: htmlcssadsense

解决方案


您可以使用引导列系统并添加如下代码:

<div class="container">
    <div class="row">
        <div class="col-sm-3"><!-- ad sense --></div>
        <div class="col-sm-6"><!-- your table content --></div>
        <div class="col-sm-3"><!-- ad sense --></div>
    </div>
</div>

推荐阅读