- This topic has 1 reply, 2 voices, and was last updated 8 years, 6 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.


Home › Forums › Pro Themes › Business Field Pro › Header Image not resizing for mobile device in pro version
Tagged: banner for mobile view
I am VERY new. With the help of the excellent support team, I added custom CSS because the banner was cutting off about half way.
#custom-header {padding: 150px 0;}
I don’t know what all that means but the desk top view looks better. The next issue is that the mobile view only shows about the left 1/3 of the banner image. Is there an easy fix for this, too?
Thank you so much.
Hello @perkinspapercraft,
Actually, the thing is in responsive view the header will get cropped and this is how the theme is designed.
However, the whole image can be displayed using the CSS in responsive view but the height of the header image will be decreased.
Use below given CSS to adjust the header image.
@media only screen and (max-width: 767px){
#custom-header {
background-size: contain !important;
}
}
Hope this helps.
Best Regards!!
| Cookie | Duration | Description |
|---|---|---|
| cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
| cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
| cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
| cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
| cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
| viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |



