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.

#3345
Vladimir
Keymaster

For each page where you want to apply this CSS you need to find page ID. It can be found in URL when you edit page.
If URL is:

http://localhost/wordpress/elvyre/wp-admin/post.php?post=453&action=edit&lang=en

Page ID is this part: “?post=453”.

You use ID with CSS below to select only certain pages:

.page-id-453 #page-title,
.page-id-455 #page-title,
.page-id-457 #page-title{
height: 369px;
}

Regarding repeated image, this depends on your image size: If image in not large enough, it will repeat.
But you can make a workaround but stretching image on mobile devices with some CSS:

@media only screen and (max-width: 479px) and (min-width: 320px){
#page-title{
background-size: cover;
}
}

@media only screen and (max-width: 767px) and (min-width: 480px){
#page-title{
background-size: cover;
}
}