Private: Home › Forums › HTML Templates › Mixed Modern and Professional HTML Template › Page Titles › Reply To: Page Titles
April 23, 2015 at 1:50 pm
#2824
Participant
Hello,
The best solution in my opinion would be to position the page title bg image to bottom of container so it’s visible properly:
Add the following css code to your style.css file:
#page-title {
background-position: center bottom;
}
The second solution would be to keep to proportions of bg image (the image isn’t set to 100% width in this case):
#page-title {
background-position: center;
background-size: contain
}
Robert