Hello everyone, I have a problem. I have a custom code for the announcement-bar, but I am not able to make the letters bold. Could anyone suggest to me what I should do?
My store is: www.smartcasashop.com.br
Password: daniel
The code is:
{%- if section.blocks.size > 0 and section.settings.show_announcement_bar -%}
}
.websensepro-announcement-bar .swiper-button-next:after, .websensepro-announcement-bar .swiper-container-rtl .swiper-button-prev:after,
.websensepro-announcement-bar .swiper-button-prev:after, .websensepro-announcement-bar .swiper-container-rtl .swiper-button-next:after{
font-size: 18px;
color:{{section.settings.colorText}};
}
{%- if section.blocks.size < 2 %}
.websensepro-announcement-bar .websensepro-swiper-button{display:none!important;}
{%- endif -%}
.websensepro-swiper-button {
display: block !important;
top: 75% !important;
}
{% schema %}
{
“name”: “Announcement Bar”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_announcement_bar”,
“label”: “Show”
},
{
“type”: “checkbox”,
“id”: “autoplay”,
“label”: “Autoplay”
},
{
“type”: “text”,
“id”: “delay”,
“label”: “Delay between transitions (in ms)”,
“default”: “5000”
},
{
“type”: “color”,
“id”: “colorBackground”,
“label”: “Background color”,
“default”: “#ffffff”
},
{
“type”: “color”,
“id”: “colorText”,
“label”: “Text color”,
“default”: “#000”
}
],
“blocks”: [
{
“type”: “header”,
“name”: “Message”,
“settings”: [
{
“id”: “message”,
“type”: “textarea”,
“label”: “Message”
}
]
}
]
}
{% endschema %}