Title: Adding a Multiple-line subtitle
Last modified: February 4, 2017

---

# Adding a Multiple-line subtitle

 *  Resolved [paullam328](https://wordpress.org/support/users/paullam328/)
 * (@paullam328)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/adding-a-multiple-line-subtitle/)
 * Website link: [http://ubcmun.org/](http://ubcmun.org/)
    Page I would like to 
   edit: front page
 * When I use the “customize” button to edit the front page, I realized that you
   cannot insert 2 subtitles of different lines. In this case, I would like to insert
   Location and Date, which each of them is being written in separate line respectively.
   The subtitle MUST be located on the slider (sliding background), and underneath
   of the large title.
 * e.g., front page should look like
    UBCMUN MMXVII (title) Location:… (subtitle)
   Date:… (subtitle)
 * With months of experience in html and css, I am able to locate the lines of html
   code that the subtitle is located at using the developer’s tools. Therefore, 
   I tried really hard to find the original HTML file of the front page, which is
   obviously unsuccessful.
 * Therefore, I would like to ask for a way to add a multiple-line subtitle in the
   frontpage, that is located within the sliding header of the Sydney theme. Or 
   else I would like to know the exact location to the HTML file of the header, 
   so that I can modify the html code directly.
    -  This topic was modified 9 years, 7 months ago by [paullam328](https://wordpress.org/support/users/paullam328/).
    -  This topic was modified 9 years, 7 months ago by [paullam328](https://wordpress.org/support/users/paullam328/).
    -  This topic was modified 9 years, 7 months ago by [paullam328](https://wordpress.org/support/users/paullam328/).
    -  This topic was modified 9 years, 7 months ago by [paullam328](https://wordpress.org/support/users/paullam328/).

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

 *  [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * (@kharisblank)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/adding-a-multiple-line-subtitle/#post-8213149)
 * Hello there,
 * I would like to apologize in advance for the delay.
 * The main slider markup is defined in the _sydney\_slider\_template()_ function
   in the _sydney/inc/slider.php_ file. To modify it, copy that function into your
   child theme’s _functions.php_ file. So that you can edit in there without loosing
   the changes you’ve made once you update the theme in future.
 * You will have something like the following in your child theme’s functions.php
   file:
 *     ```
       function sydney_slider_template() {
   
         // Code
   
       }
       ```
   
 * The code for slide title and subtitle are:
 *     ```
       <h2 class="maintitle"><?php echo esc_html($slider_title_1); ?></h2>
       <p class="subtitle"><?php echo esc_html($slider_subtitle_1); ?></p>
       ```
   
 * Regards,
    Kharis
    -  This reply was modified 9 years, 7 months ago by [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/).
 *  Thread Starter [paullam328](https://wordpress.org/support/users/paullam328/)
 * (@paullam328)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/adding-a-multiple-line-subtitle/#post-8216501)
 * Thanks a million!

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

The topic ‘Adding a Multiple-line subtitle’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/sydney/2.67/screenshot.png)
 * Sydney
 * [Support Threads](https://wordpress.org/support/theme/sydney/)
 * [Active Topics](https://wordpress.org/support/theme/sydney/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/sydney/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/sydney/reviews/)

## Tags

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

 * 4 replies
 * 3 participants
 * Last reply from: [Kisshu](https://wordpress.org/support/users/curiolab/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/adding-a-multiple-line-subtitle/#post-8623519)
 * Status: resolved