Plugin Support
Fotis
(@markwaregr)
Hi there,
you can try this
/*title*/
.maxslider-slide-title {
font-size: 20px;
font-weight: bold;
font-style: italic;
}
/*subtitle*/
.maxslider-slide-subtitle {
font-size: 30px;
font-weight: bold;
font-style: italic;
}
in your custom css box under Customize->Additional CSS.
Let me know if this helps
I should have been more specific. I meant _within_ the subtitle. Basically, something like:
<p>Buy this now!<br />Some conditions apply.</p>
Plugin Support
Fotis
(@markwaregr)
Hi @elbeavers
You can open in maxslider plugin folder slide.php and
replace
<p class="maxslider-slide-subtitle">
<?php echo wp_kses( $slide['subtitle'], MaxSlider()->sanitizer->allowed_tags( 'subtitle' ) ); ?> </p>
with
<p class="maxslider-slide-subtitle">
<?php echo $slide['subtitle']; ?> </p>
to allow custom HTML tags there
Let me know if this helps
-
This reply was modified 4 years, 4 months ago by
Fotis.
-
This reply was modified 4 years, 4 months ago by
Fotis.