Title: Second title
Last modified: November 26, 2023

---

# Second title

 *  Resolved [Plamen Yanev](https://wordpress.org/support/users/pyanev/)
 * (@pyanev)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/second-title/)
 * I’m using a modern widget in my pano. I have used the display title option. Can
   some additional js code to render a second title (custom text, logo) at the top
   of the scenes. Similar to the original plug-in buttons that are visualized on
   each scene. Thanks!
    -  This topic was modified 2 years, 6 months ago by [Plamen Yanev](https://wordpress.org/support/users/pyanev/).

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

 *  Plugin Author [Avirtum](https://wordpress.org/support/users/avirtum/)
 * (@avirtum)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/second-title/#post-17230572)
 * Well, I can show a simple code. You should paste it inside the custom js section
   inside the item builder
 *     ```wp-block-code
       var instance = this,
       $ = jQuery;
   
       var $title = $("<div>").addClass("mytitle");
       instance.$container.append($title);
   
       instance.$container.on("ipanorama:scene-before-load", function(e, data) {
          $title.html(data.scene.cfg.userData);
       });
       ```
   
 * It uses the custom event “ipanorama:scene-before-load”, inside the hadler we 
   paste string data from userData field (see scene config -> the section “data”).
   Also you can style this custom title like below
 *     ```wp-block-code
       .mytitle {
           position:absolute;
           top:5px;
           left:5px;
           padding:10px;
           background:#000;
           color:#fff;
       }
       ```
   
 *  Thread Starter [Plamen Yanev](https://wordpress.org/support/users/pyanev/)
 * (@pyanev)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/second-title/#post-17232803)
 * Great job, thanks!

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

The topic ‘Second title’ is closed to new replies.

 * ![](https://ps.w.org/ipanorama-360-virtual-tour-builder-lite/assets/icon-256x256.
   png?rev=2139967)
 * [iPanorama 360 - Advanced Virtual Tour Builder](https://wordpress.org/plugins/ipanorama-360-virtual-tour-builder-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ipanorama-360-virtual-tour-builder-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ipanorama-360-virtual-tour-builder-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/ipanorama-360-virtual-tour-builder-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ipanorama-360-virtual-tour-builder-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ipanorama-360-virtual-tour-builder-lite/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Plamen Yanev](https://wordpress.org/support/users/pyanev/)
 * Last activity: [2 years, 6 months ago](https://wordpress.org/support/topic/second-title/#post-17232803)
 * Status: resolved