Hello All,
@onlyME I have made some small changes to make the slider widgets show the header as the ones from vertical and horizontal widgets.
Maybe you consider in adding it the the future version, maybe also with and On/Off option.
Here are the modifications:
In CSS file from featurecontent -> slider.css I have add this to remove spaces:
.ipsPageHeader {
padding: 0px;
border: none;
}
In Template file featuredcontent -> front -> embend -> showSlider I replaced from line 14...
<h1 class="ipsType_pageTitle">{$Slider->title}</h1>
...with this...
<h3 class='ipsType_reset ipsWidget_title'>
{$Slider->title}
{{if $orientation == 'horizontal'}}
<span class='ipsType_light ipsType_unbold ipsType_medium'>{$Slider->title}</span>
{{endif}}
</h3>
Hope this is useful for someone.
Enjoy!