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.

#2824
Robert Kavgić
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