Hello @jendaddario
You can achieve this by applying following CSS code.
@media(max-width:320px) {
.headerslider {
visibility: hidden !important ;
}
.wrapper.section {
margin-top: -460px !important;
}
}
@media(max-width:480px) {
.headerslider {
visibility: hidden !important;
}
.wrapper.section {
margin-top: -460px !important;
}
}
Hope this will help.
Thanks.
-
This reply was modified 8 years, 10 months ago by
wbcomdesigns.
-
This reply was modified 8 years, 10 months ago by
wbcomdesigns.
-
This reply was modified 8 years, 10 months ago by
wbcomdesigns.
That worked, thank you SO much!!
I’m sorry – I actually thought this worked, yet when I looked again, I noticed it completely took away my header. My menu and the title of my blog are now missing. I just wanted to hide the image slider, but keep the title and the header.
Is there a way to adjust the CSS to fix this?
Thanks!
Jen
Hello @jendaddario
You can achieve this by applying following CSS code.
@media (max-width: 500px)
.wrapper .section-inner {
max-width: 100%;
margin-top: 70px !important;
}
Hope this will help.
Thanks.
THANK YOU SO MUCH!!! I really appreciate your help.
Is there any way to apply this same logic to a single post page? It works perfectly when visiting my home page, but when I click on an individual post (for example http://redwhitedenim.com/jewels-for-hope/) the white space where the header slider was is still showing in mobile view. Is there any way to delete this white space?