Advertisement
imbaprofeeder

Budzona

May 19th, 2025 (edited)
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. <div class="rm-local-store-info" style="margin-bottom: 15px; margin-top: 15px; border-top: 1px solid #eee; padding-top: 15px;"> {# Глобальный line-height убран, чтобы не влиять на другие элементы, если не нужно #}
  2.  
  3. {# Магазин и Адрес #}
  4. <div class="rm-product-center-info-item" style="margin-bottom: 8px;">
  5. <span class="rm-product-center-info-item-title" style="font-weight: bold; display: block; margin-bottom: 5px;">
  6. <i class="fa fa-map-marker" aria-hidden="true" style="color: #555; margin-right: 7px;"></i>Наявність в магазині:
  7. </span>
  8. {# Адрес с отступом и увеличенным интервалом между строками #}
  9. <div style="padding-left: 22px; line-height: 1.4;"> {# Добавлена высота строки для блока адреса #}
  10. <span style="display: block; font-weight: bold; margin-bottom: 4px;">Ірпінь Будзона</span> {# Увеличен margin-bottom #}
  11. <span style="display: block; font-size: 0.9em; color: #555; margin-bottom: 4px;">вул Західна 40/41</span> {# Увеличен margin-bottom #}
  12. <span style="display: block; font-size: 0.9em; color: #555;">м. Ірпінь Київська область 08200</span> {# У последней строки нет margin-bottom #}
  13. </div>
  14. </div>
  15.  
  16. {# Статус Наличия #}
  17. <div class="rm-product-center-info-item" style="margin-bottom: 8px;">
  18. <span class="rm-product-center-info-item-title" style="font-weight: bold;">Статус:</span>
  19. <div class="rm-module-stock {% if out_of_stock %} rm-out-of-stock{% else %} rm-in-stock {% endif %}" style="display: inline-block; margin-left: 5px; font-weight: bold;">
  20. {% if out_of_stock %}
  21. <i class="fa fa-times-circle" aria-hidden="true" style="margin-right: 5px;"></i>Немає в наявності
  22. {% else %}
  23. {% if stock and stock != '' %}
  24. <i class="fa fa-check-circle" aria-hidden="true" style="margin-right: 5px;"></i>В наявності
  25. {% else %}
  26. <span style="color: orange; font-weight: bold;">Уточнюйте</span>
  27. {% endif %}
  28. {% endif %}
  29. </div>
  30. </div>
  31.  
  32. {# Цена в магазине #}
  33. <div class="rm-product-center-info-item">
  34. <span class="rm-product-center-info-item-title" style="font-weight: bold;">Ціна в магазині:</span>
  35. <span style="font-size: 1.1em; font-weight: bold; margin-left: 5px;">
  36. {% if not special %}
  37. {{ price }}
  38. {% else %}
  39. {{ special }} <span style="text-decoration: line-through; font-size: 0.9em; color: #888; margin-left: 5px; font-weight: normal;">{{ price }}</span>
  40. {% endif %}
  41. </span>
  42. </div>
  43. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement