- This topic has 3 replies, 3 voices, and was last updated 8 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Forums › Free Themes › Education Hub › Quick link, Social icons and Search box
Tagged: social icons, social menu
I want to hide header quick links, header search box and Header Social icons for mobile website. Not for Desktop site. What is the CSS code for it ?
I have tried below code but it doesn’t hide on mobile
@media only screen and (max-width: 479px)
.quick-links {
width: 100%;
display: none;
}
@media only screen and (max-width: 767px)
.quick-links {
float: left;
width: 100%;
display:none;
}
Thanks in advance
Try the following custom CSS code :
/* Portrait and Landscape */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 667px)
and (-webkit-min-device-pixel-ratio: 2) {
.quick-links{
display:none;
}
.search-section {
display: none;
}
.header-social-wrapper{
display:none;
}
}
Hope this helps!
How to replace Search Box with Subscribe Box?
@evachang, this feature is not available in the theme itself.
Alternatively, you can Request a Customizer to get this job done for you.
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. |