Index header Image not visible in "cell phone"

Support desk for Multipurpose Quark Theme
GK User
Thu May 19, 2016 10:00 pm
Hi again,

I have Quark Ecommerce template.

The problem:
Header image in the index (the sculpture) is not visible in the mobile , or cell view.

The target:
I'd like to see the image (sculpture) from cell or mobile. In the index header.

URL: liamvasik.com

Thank u again for ur support.
User avatar
Fresh Boarder

teitbite
Mon May 23, 2016 11:31 am
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
@media only screen and (max-width:500px) {
#gkHeaderMod .gkStoreImage {
    display: block;
    margin: 40px auto 0;
}
}
User avatar
Moderator

GK User
Tue May 24, 2016 10:33 am
Thank you TEITBITE, I did what you said, but in portrait mode, I still cannot see the image "Sculpture" .

I can see it properly only if I see it in landscape mode.

Any Idea how to see it also in portrait mode? No mather if the image becames small. (Better something small than nothing).
thak you!

URL: [url]liamvasik.com[/url]
User avatar
Fresh Boarder

teitbite
Thu May 26, 2016 10:18 am
Hi

Actually code wasn't working since got overwritten by mobile.css try replace it with higher priority one:

Code: Select all
#gkHeaderMod .gkStoreImage {
    display: block !important;
    margin: 40px auto 0;
}
User avatar
Moderator

GK User
Thu May 26, 2016 9:24 pm
Hi Teibite,

your solution was fine for mobile, but now the problem is that the "image" (sculpture) is too small when surfing from desktop computer or big screen.

Could be possible to see as it is now only from small devices in portrait mode, and as it was previously from big screens?

Thank you very much for your support.

We are very close!
User avatar
Fresh Boarder

teitbite
Mon May 30, 2016 11:20 am
Hi

I meant to replace my code inside @media condition, so full code with @media condition will look like this:

Code: Select all
@media only screen and (max-width:500px) {
#gkHeaderMod .gkStoreImage {
    display: block !important;
    margin: 40px auto 0;
}
}
User avatar
Moderator


cron