There are two links:
Your home-demo page - https://demo.gavick.com/joomla3/quark_ecommerce/
Your blog-demo page - https://demo.gavick.com/joomla3/quark_e ... x.php/blog
Size of BG image of these two pages regulates by different parts of code:
1. On home page BG image always fulfills whole area of visible part.
2. On the second example size of BG image is regulated by following rules:
- Code: Select all
@media screen and (max-width: 640px)
#gkHeaderMod, .blog-page > .header, .single-page > .header, .search-page .header {
height: 360px;
}
@media screen and (max-width: 840px)
#gkHeaderMod, .blog-page > .header, .single-page > .header, .search-page .header {
height: 440px;
}
@media screen and (max-width: 1040px)
#gkHeaderMod, .blog-page > .header, .single-page > .header, .search-page .header {
height: 480px;
}
and so on.
So here is my question, how can I display blog page in the same way as home, in other words: what should I do to make this BG image always be "fullscreen"?