Title: Format text
Last modified: November 2, 2021

---

# Format text

 *  [ELBeavers](https://wordpress.org/support/users/elbeavers/)
 * (@elbeavers)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/format-text-4/)
 * Is there a way to use html or css to make inline adjustments to text such as 
   italic or font size?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Support [Fotis](https://wordpress.org/support/users/markwaregr/)
 * (@markwaregr)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/format-text-4/#post-15031423)
 * 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
 *  Thread Starter [ELBeavers](https://wordpress.org/support/users/elbeavers/)
 * (@elbeavers)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/format-text-4/#post-15040186)
 * 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](https://wordpress.org/support/users/markwaregr/)
 * (@markwaregr)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/format-text-4/#post-15068784)
 * Hi [@elbeavers](https://wordpress.org/support/users/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, 6 months ago by [Fotis](https://wordpress.org/support/users/markwaregr/).
    -  This reply was modified 4 years, 6 months ago by [Fotis](https://wordpress.org/support/users/markwaregr/).

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Format text’ is closed to new replies.

 * ![](https://ps.w.org/maxslider/assets/icon-256x256.png?rev=2948778)
 * [MaxSlider](https://wordpress.org/plugins/maxslider/)
 * [Support Threads](https://wordpress.org/support/plugin/maxslider/)
 * [Active Topics](https://wordpress.org/support/plugin/maxslider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/maxslider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/maxslider/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [formatting](https://wordpress.org/support/topic-tag/formatting/)
 * [html](https://wordpress.org/support/topic-tag/html/)

 * 3 replies
 * 2 participants
 * Last reply from: [Fotis](https://wordpress.org/support/users/markwaregr/)
 * Last activity: [4 years, 6 months ago](https://wordpress.org/support/topic/format-text-4/#post-15068784)
 * Status: not resolved