> For the complete documentation index, see [llms.txt](https://info.vecomlab.ru/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://info.vecomlab.ru/dropshipping/shopify/task-21-edit-code.md).

# Task #21: Online Store - Edit Code

<a href="https://vecomlab.com/ru" class="button primary">Наш сайт</a>  <a href="https://docs.vecomlab.com/ru" class="button secondary">Новая документация</a>

### Цель <a href="#purpose" id="purpose"></a>

Настроить Online Store - Edit Code.

{% embed url="<https://youtu.be/jliPQL2EpSY>" %}

В этом видео объяснил несколько важных шагов для успешной настройки вашего магазина на платформе Shopify. Узнаете, как открыть форум Shopify, взаимодействовать с чатом поддержки, редактировать код темы Dawn, настраивать отображение элементов дизайна, добавлять иконки платежных систем в футер и многое другое.

### Описание <a href="#description" id="description"></a>

* Тема Dawn требует дополнительной настройки кода.

### Инструкция <a href="#instructions" id="instructions"></a>

1. Убрать иконку поиска на сайте;
2. Сделать изображение по размеру;
3. Сделать заголовок по центру для блока Multicolumn;
4. Сделать видео для блока Image with text;
5. Изменить цвет текста цены продукта на красный;
6. Показать иконки платежных систем;
7. Сделать селектор и кнопку добавления в корзину на одном уровне.

### Действия <a href="#actions" id="actions"></a>

**Убрать иконку поиска на сайте:**

```
.header__icon--search {
    display: none;
}
```

**Сделать изображения по размеру:**

```
.image-with-text__media img {
    object-fit: contain;
}
```

**Сделать заголовок по центру для блока Multicolumn:**

```
.multicolumn [class^='title']{
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}
```

**Изменить цвет текста цены продукта на красный:**

```
.price .price-item {
    color: #FA4545;
}
```

**Показать иконки платежных систем:**

{% embed url="<https://help.shopify.com/en/manual/online-store/themes/themes-by-shopify/vintage-themes/customizing-vintage-themes/add-credit-card-icons>" %}

**Сделать селектор и кнопку добавления в корзину на одном уровне:**

```
@media (min-width: 380px) {
    .product-form {
        position: relative
    }
    
    .product-form .product-form__buttons {
        position: absolute;
        left: 148px;
        top: -72px;
    }
}
```

**Сделать видео для блока Image with text:**

{% embed url="<https://www.youtube.com/watch?v=qzYp0MlrCDg>" %}

### Убрать выбор валюты в мобильном меню <a href="#remove-currency-selector" id="remove-currency-selector"></a>

Источник: <https://community.shopify.com/c/shopify-design/how-to-remove-currency-selector-in-hamburger-menu-in-dawn-mobile/td-p/2183077>

Если используете тему **Dawn**, добавьте в код в конец файла **base.css**.

```
@media only screen and (max-width: 989px){
  .menu-drawer__localization.header-localization {
    display: none;
  }
}
```

<div><figure><img src="/files/6micEszsm3izpGyfRX5A" alt="VecomLab Shopify Menu"><figcaption></figcaption></figure> <figure><img src="/files/hQ2cwptViwVtUgc1Rs55" alt="VecomLab Shopify Menu"><figcaption></figcaption></figure></div>

### Отзывы <a href="#reviews" id="reviews"></a>

Узнайте, как эта информация помогла другим, и поделитесь своим мнением.

{% embed url="<https://www.trustpilot.com/review/vecomlab.com>" %}

{% hint style="info" %}
Подписывайтесь на наш [Канал в Telegram](https://t.me/vecomlab), чтобы первыми узнавать о новостях и обновлениях.

Если у вас есть вопросы, напишите в наш [Чат в Telegram](https://t.me/vecomlab_chat).
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://info.vecomlab.ru/dropshipping/shopify/task-21-edit-code.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
