Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Подскажите еще, пожалуйста.
Как в отображении цены изменить цвет и размер значения валюты. Скажем, 1000 руб. - все красное. Как сделать руб. черным и поменьше.
<font class="x3" id="currentPrice">
4,973.50руб.
</font>
.x3 {
FONT-SIZE: 14px;
FONT-FAMILY: sans-serif;
color: #E72F01;
font-weight: bold;
padding-top: 25px;
}
.x3 A:link {
text-decoration: none;
COLOR: #E72F01;
}
.x3 A:visited {
text-decoration: none;
COLOR: #E72F01;
}
.x3 A:hover {
text-decoration: none;
COLOR: #E72F01;
<b>
<font class="big" color="red" id='currentPrice'>
{if $product_info.Price <= 0}
n/a
{else}
{$product_info.PriceWithUnit}
{/if}
</font>
</b>
Открываешь файл \core_functions\functions.php
и ищешь строку 343-ю с такими крякобрязами, вот эта запятая и есть твоя:
$res = ",".$res;
Пробел может быть знаком:
Получится так:
$res = " ".$res;