web-dev-qa-db-ja.com

3つの三連祭壇画を並べて追加します

カスタムテーマ「Custom_stark」を作成し、.infoファイルに変更を加え、トリプティクを追加しました

regions[triptych_first] = Triptych first
regions[triptych_middle] = Triptych middle
regions[triptych_last] = Triptych last

custom_stark.info。

しかし、ブロック「ブロック領域を示す(Custom_stark)」で見ると

私はこのデフォルトのフォーマットでのみ表示できます。 enter image description here

そして、どのように私は下の画像に記載されている希望の形式で三連祭壇画を手に入れることができますか

enter image description here

そして以下はpage.tpl.phpのコードです

<?php if ($page['triptych_first'] || $page['triptych_middle'] || $page['triptych_last']): ?>
    <div id="triptych-wrapper"><div id="triptych" class="clearfix">
      <?php print render($page['triptych_first']); ?>      
  <?php print render($page['triptych_middle']); ?>
  <?php print render($page['triptych_last']); ?>
</div></div> <!-- /#triptych, /#triptych-wrapper -->
4
Rafee

これを試して

 <?php if ($page['triptych_first'] || $page['triptych_middle'] || $page['triptych_last']): ?>
   <div id="triptych-wrapper">
      <div id="triptych" class="clearfix">
         <div style="float: left; width: 25%;">
            <?php print render($page['triptych_first']); ?>      
         </div>
         <div style="float: left; width: 50%;">
            <?php print render($page['triptych_middle']); ?>
         </div>
         <div style="float: right; width: 25%;">
            <?php print render($page['triptych_last']); ?>
         </div>
         <div style="clear: both;"></div>
      </div>
   </div>
2
Shoaib Nawaz