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.

#3640
Vladimir
Keymaster

I modified CSS for Page title, now it’s scaling on all screen widths. On low resolutions, image is repeating. This is result of responsivness you want so you should upload image with even bigger height to cover the space on low resolutions.

Regarding Revolution slider, this is normal slider behaviour. Slider is scaling images to fit into the container otherwise you will have same problem like on page title, image won’t cover whole container.

You can see that it’s same in our live preview.
Problem with images you use is that they have text which you want to be visible on all resolutions but because slider is calculating width/height, text goes out of viewport. I suggest that you add text as layers, and slider will position text so it’s always visible. You can also ask Revolution slider authors if they have some tricks to fit background better:
http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380/comments

Regarding last question, for page title, use CSS below to hide it:

.page-id-450 .pt-title{
visibility: hidden;
}

This CSS is specific for About us page. If you want to hide on other pages, copy/paste is and replace page id.

Vladimir