You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<div class="panel-padding {{ settings.type_text_css_class }}" style=" padding: {{ settings.type_text_vertical_padding|default(0) }} {{ settings.type_text_horizontal_padding|default(0) }}; ">
(eg. adding a semicolon to the end of the second line. Or third line as rendered here )
seems to work without complications.
Cheers
The text was updated successfully, but these errors were encountered:
Hi - nice work on the slider. Just installed and playing about with it a little.
I am using a slider type of 'text' and the demo header information from the read me and the skeleton.
I notice these files have the following options:
type_text_vertical_padding: 70px;
type_text_horizontal_padding: 50px;
Using the provided template, this gives:
<div class="panel-padding " style=" padding: 70px; 50px; ">
Which causes an error.
Removing the semi-colons from the header, and changing the twig file from:
<div class="panel-padding {{ settings.type_text_css_class }}" style="
padding: {{ settings.type_text_vertical_padding|default(0) }} {{ settings.type_text_horizontal_padding|default(0) }}
">
to:
<div class="panel-padding {{ settings.type_text_css_class }}" style="
padding: {{ settings.type_text_vertical_padding|default(0) }} {{ settings.type_text_horizontal_padding|default(0) }};
">
(eg. adding a semicolon to the end of the second line. Or third line as rendered here )
seems to work without complications.
Cheers
The text was updated successfully, but these errors were encountered: