如何添加li"功能"到现有的课程?

时间:2017-01-26 11:30:04

标签: php html css html-lists

为我糟糕的头衔解释道歉。我有一个代码,我试图重新设计,其中一部分在下面。我使用的PHP文档执行(JSON)查询以获取活动"框"显示在屏幕上,并自动将它们作为列表进行排序。我希望在2列中查询框,它不必是有序列表。

问题是,我的.php文件中没有 li 类,所以我想我必须编辑下面的一个类来实现这个目标吗?

<div class="x-container max width agent-container" style="margin: 0px auto;padding: 0px;">'

 <div class="x-column x-sm x-2-3";>

有没有办法来&#34;添加&#34; li 到CSS还是有另一种方法吗?

我知道我可以使用像

这样的代码
display: block;
width: 50%;
float: left;

添加到我的 li 类..但是我还需要一个 li 类吗?非常感谢任何帮助!

<div class="entry-content content homepage-agents">

  <?php while(have_posts()): the_post();?>

  <?php the_content();?>

  <?php endwhile;?>

  <div class="x-container max width agent-container" style="margin: 0px auto;padding: 0px;">

    <div class="x-column x-sm x-2-3";>

      <div class="agent-data">

        <?php

        /**
        * Detect plugin. For use on Front End only.
        */
        require_once(ABSPATH . 'wp-admin/includes/plugin.php');

        if(is_plugin_active('consulenten-plugin-business/consulenten-plugin-business.php')): $jm_cplb = new ConsulentenpluginBusiness(); endif;

        if(is_plugin_active('consulenten-plugin-lite/consulenten-plugin-lite.php')): $jm_cplb = new ConsulentenpluginLite(); endif;                             

        $array_boxes = (array)$jm_cplb->jm_cplb_loadjson();

这是一些css ..

}

.agent-container {
    margin-top: 60px !important;
    margin-bottom: 60px !important;        
}

.agent-item {
    width: 100% !important;
    margin-bottom: 60px;
}

0 个答案:

没有答案