Hi,
I got this banner on postion bannertop. Only the banner will disappears when you visit the website by mobile.
Can I get it also when people visit the mobile website?
link
funkiej wrote:Hi,
It's no problem to lose the logo and place the header instead.
See below, left is original with logo, right is how I want it (without logo but with header).
tnx in advance
@media (max-width: 1030px) {
#gkBannerTop {
display: block !important;
}
#gkLogo {
display: none;
}
}
@media (max-width: 1175px) {
#gkBannerTop {
display: block !important;
}
#gkLogo {
position: absolute;
top: 0px;
left: 0px;
margin: 0px;
max-width: 52px;
}
#gkToolbar {
top: 78px;
}
}
Cyberek wrote:Yes, please try this media query code:
- Code: Select all
@media (max-width: 1175px) {
#gkBannerTop {
display: block !important;
}
#gkLogo {
position: absolute;
top: 0px;
left: 0px;
margin: 0px;
max-width: 52px;
}
#gkToolbar {
top: 78px;
}
}
#gkLogo:hover {
background-color: transparent;
}
@media (max-width: 1175px) {
#gkBannerTop {
display: block !important;
}
#gkLogo {
position: absolute;
top: 0px;
left: 0px;
margin: 0px;
max-width: 52px;
}
#gkToolbar {
top: 78px;
}
}
@media (max-width: 1175px) {
#gkBannerTop {
display: block !important;
}
#gkLogo {
position: absolute;
top: 0px;
left: 0px;
margin: 0px;
max-width: 52px;
}
#gkToolbar {
top: 78px;
}
}
@media (max-width: 580px) {
#gkLogo {
position: absolute;
top: 0px;
left: 0px;
margin: 0px;
max-width: 40px;
}}