Оберните 2 блока и покажите их на 1 строке - PullRequest
0 голосов
/ 27 января 2019

У меня есть 2 блока, и они находятся один под другим.Я хотел бы показать их рядом, но мои, но мои знания слабы.

{block name='product_flags_under'}
            {foreach $product.extraContent as $extra}
            {if $extra.moduleName=='ststickers'}
                {include file='catalog/_partials/miniatures/sticker.tpl' stickers=$extra.content sticker_position=array(10,11,13) is_from_product_page=1}
            {/if}
            {/foreach}
            {hook h='displayUnderProductName'}            
          {/block}

{block name='product_reference'}
            {if $sttheme.display_pro_reference && isset($product.reference_to_display)}
              <div class="product-reference pro_extra_info flex_container">
                <span class="pro_extra_info_label">{l s='Reference' d='Shop.Theme.Panda'}: </span>
                <div class="pro_extra_info_content flex_child" {if $sttheme.google_rich_snippets} itemprop="sku" {/if}>{$product.reference_to_display}</div>
              </div>
            {/if}

Ответы [ 3 ]

0 голосов
/ 27 января 2019

Вам нужно будет обернуть два блока в другой блок, чтобы обернуть блоки в пределах div. Затем вы можете использовать float или display: flex, чтобы показать оба ваших div'а рядом.

Поскольку кажется, что вы не можете добавлять новые блоки, вам нужно расширить один блок и удалить другой. Вот пример:

CSS

.product-wrapper {
   display: flex;
}

HTML

{block name='product_flags_under'}
<div class="product-wrapper">
    {$smarty.block.parent}    
    {if $sttheme.display_pro_reference && isset($product.reference_to_display)}
        <div class="product-reference pro_extra_info flex_container">
            <span class="pro_extra_info_label">{l s='Reference' d='Shop.Theme.Panda'}: </span>
            <div class="pro_extra_info_content flex_child" {if $sttheme.google_rich_snippets} itemprop="sku" {/if}>{$product.reference_to_display}</div>
        </div>
    {/if}   
</div>
{/block}

{block name='product_reference'}{/block}
0 голосов
/ 27 января 2019

Оберните оба ваших DIV в родительский div, а затем используйте flex для создания двухколоночного макета

.parent {
    display: flex;
    flex-flow:row wrap;
    width: 100%;
}
.col {
  width: 45%;
  padding: 0 2%;
}

.col > div {border: 1px solid #000;}
<div class="parent">    
    <div class="col"><div>1</div></div>
    <div class="col"><div>2</div></div>
</div>
0 голосов
/ 27 января 2019

Есть много способов сделать что-то подобное.Я показал вам один пример.Вы можете изменить ширину в процентах или удалить их по своему желанию.

.parent{
  display: flex
}
.left{
  width: 60%
}
.right{
  width: 40%
}
<div class="parent">    
 <div class="left">
   <p>t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
  </div>
 <div class="right">
      <p>t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. </p>
  </div>
</div>

Вы можете включить свой другой элемент в левый и правый блок

...