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.
January 24, 2015 at 3:23 pm
#1716
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