Здравствуйте.
1. Как понимаю, вы хотите установить в шапку картинку фоном. Зайдите в раздел Сайт - Редактор шаблонов - main.css - найдите:
.header {
position: absolute;
position: fixed;
top: 0;
left: auto;
z-index: 1024;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-right: auto;
margin-left: auto;
min-width: 100%;
width: auto;
/* height: 45px; */
background-color: #2C3E50;
}
замените на:
.header {
position: absolute;
position: fixed;
top: 0;
left: auto;
z-index: 1024;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-right: auto;
margin-left: auto;
min-width: 100%;
width: auto;
background: url('#') no-repeat center center;
}
Вместо знака # укажите ссылку на картинку.
2. Зайдите в раздел Сайт - Редактор шаблонов - main.css - найдите:
.basket-info .cartCountNum {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #1abc9c;
color: white;
text-align: center;
font-weight: bold;
font-size: 14px;
padding: 0 3px 0 3px;
margin-right: 4px;
margin-left: 4px;
display: inline-block;
height: 19px;
line-height: 1.4;
}
замените на:
.basket-info .cartCountNum {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #EFC911;
color: white;
text-align: center;
font-weight: bold;
font-size: 14px;
padding: 0 3px 0 3px;
margin-right: 4px;
margin-left: 4px;
display: inline-block;
height: 19px;
line-height: 1.4;
}
3. Зайдите в раздел Сайт - Редактор шаблонов - main.css - найдите:
.toOformZakazCart .btn {
display: block;
width: 90%;
text-align: center;
padding: 2.1% 5.5%;
margin: 0 auto;
}
замените на:
.toOformZakazCart .btn {
display: block;
width: 90%;
background: #EFC911;
text-align: center;
padding: 2.1% 5.5%;
margin: 0 auto;
}
4. Зайдите в раздел Сайт - Редактор шаблонов - main.css - найдите:
.logo .store_name {
display: inline-block;
width: 100%;
color: #34495E;
text-align: center;
}
замените на:
.logo .store_name {
display: inline-block;
width: 100%;
color: #EFC911;
text-align: center;
}