As title description, I want to add a second line of text underneath the main header and above the button that displays over the image in the slideshow section of the Minimal theme. Not sure where to edit this.
Here’s the current code for ‘slider.liquid’ :
{%- if settings.enable_wide_layout -%}
{%- assign max_width = 1280 -%}
{%- else -%}
{%- assign max_width = 970 -%}
{%- endif -%}
{%- assign slide_width = max_width -%}
{%- case section.settings.slider_height -%}
{%- when 'small' -%}
{%- assign slider_desktop_height = '400px' -%}
{%- assign slider_mobile_height = '250px' -%}
{%- when 'medium' -%}
{%- assign slider_desktop_height = '500px' -%}
{%- assign slider_mobile_height = '300px' -%}
{%- when 'large' -%}
{%- assign slider_desktop_height = '600px' -%}
{%- assign slider_mobile_height = '400px' -%}
{%- when 'adapt' -%}
{%- assign min_aspect_ratio = section.blocks[0].settings.image.aspect_ratio | default: 2.0 -%}
{%- endcase -%}
{%- unless section.settings.slider_height == 'adapt' -%}
{%- style -%}
#flexslider--{{ section.id }} .slides__image,
#flexslider--{{ section.id }} .slides svg {
height: {{ slider_desktop_height }};
}
@media screen and (max-width: 768px) {
#flexslider--{{ section.id }} .slides__image,
#flexslider--{{ section.id }} .slides svg {
height: {{ slider_mobile_height }};
}
}
{%- endstyle -%}
{%- endunless -%}
{%- if section.blocks.size > 0 -%}
{%- assign arrow_offset = section.blocks.size | times: 10 | plus: 60 -%}
{%- style -%}
.slider__controls-button--prev {
left: calc(50% - {{ arrow_offset }}px);
}
.slider__controls-button--next {
right: calc(50% - {{ arrow_offset }}px);
}
{%- if section.settings.slider_height == 'adapt' -%}
{%- if section.settings.slider_home_transition == 'fade' -%}
#flexslider--{{ section.id }} .slides {
padding-top: {{ 100.0 | divided_by: min_aspect_ratio }}%;
}
{%- else -%}
#flexslider--{{ section.id }} .flex-viewport {
padding-top: {{ 100.0 | divided_by: min_aspect_ratio }}%;
}
{%- endif -%}
{%- endif -%}
{%- endstyle -%}
{%- for block in section.blocks -%}
{%- assign img_url = block.settings.image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
{%- if block.settings.image.width < max_width -%}
{%- assign slide_width = block.settings.image.width -%}
{%- endif -%}
{%- style -%}
#slide--{{ block.id }}, #slide--{{ block.id }}_clone {
color: {{ block.settings.color_text }};
}
#slide--{{ block.id }}:not(.slide-hide)::before, #slide--{{ block.id }}_clone:not(.slide-hide)::before {
opacity: {{ block.settings.overlay_opacity | divided_by: 100.00 }};
}
{%- endstyle -%}
- {%- if block.settings.image != blank -%}
{%- else -%}
{% capture current %}{% cycle 1, 2 %}{% endcapture %}
{{ 'lifestyle-' | append: current | placeholder_svg_tag: 'placeholder-svg' }}
{%- endif -%}
{%- assign show_link_button = false -%}
{%- if block.settings.button_label != blank and block.settings.button_link != blank -%}
{%- assign show_link_button = true -%}
{%- endif -%}
{%- unless block.settings.slide_heading == blank and show_link_button == false -%}
{%- unless block.settings.slide_heading == blank -%}
##
{{ block.settings.slide_heading | escape }}
{%- endunless -%}
{%- if show_link_button -%}
{{ block.settings.button_label | escape }}
{%- endif -%}
{%- endunless -%}
{%- endfor -%}
{%- if section.blocks.size > 1 -%}
{%- if section.settings.slider_autorotate -%}
{%- endif -%}
-
-
{%- endif -%}
{%- for block in section.blocks -%}
{%- assign show_link_button = false -%}
{%- if block.settings.button_label != blank and block.settings.button_link != blank -%}
{%- assign show_link_button = true -%}
{%- endif -%}
{%- unless block.settings.slide_heading == blank and show_link_button == false -%}
{%- unless block.settings.slide_heading == blank -%}
##
{{ block.settings.slide_heading | escape }}
{%- endunless -%}
{%- if show_link_button -%}
{{ block.settings.button_label | escape }}
{%- endif -%}
{%- endunless -%}
{%- endfor -%}
{%- endif -%}