Background

Posted in: Newsmag
Post count: 17

I’d like to change the background image for one of my pages only. Is this possible? Thanks in advance.

  • This topic was modified 10 years by newsguy.
Post count: 6535

Hi

To display a specific background-image only for a page you need to modify the code and add a conditions in td_background_render.php like here: http://screencast.com/t/f8BmfkdQ

var image_jquery_obj = jQuery( '<img class=\'td-backstretch not-parallax\' src=\'<?php
                        if (is_page(page-id)){
                        echo 'your-image-url';
                        }
                        else {
                              echo $this->background_parameters['theme_bg_image'];
                           }

                        ?>\'>' );

To get the page id follow this link: http://screencast.com/t/5uHPkcDVC

Thanks!

  • This reply was modified 10 years by Andrei L..
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.