Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

Private: Home Forums HTML Templates Elvyre Retina Ready HTML5 Template how to add different page title image for different pages. Reply To: how to add different page title image for different pages.

#1716
Robert Kavgić
Participant

Hello,

You can do this by adding a unique class to the desired pages and then set the different page title background image for those pages.

For example, open up about-us.html and modify the tag to look like:

<body class="about-us">

Then, use the following CSS code for different image:

body.about-us #page-title {
    background: url('../img/page-titles/page-title-bkg-services.jpg') center center !important;
}

You can add any class you wish to the body tag, and then use it in CSS.

Robert