Tagged: x
-
AuthorPosts
-
March 10, 2017 at 5:42 pm #1402463
Hello!
I am attempting to remove a weird white space that appears on the mobile site. I have tried to adjust my padding.
Thank you!
Kristi
March 11, 2017 at 1:27 am #1402815Hi there,
Please remove top padding from first section. To reduce more space, you can remove column’s top padding as well.
Hope it helps.
March 14, 2017 at 12:56 pm #1406857This reply has been marked as private.March 14, 2017 at 1:42 pm #1406940Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
March 15, 2017 at 12:27 pm #1408344Hello! Sorry, I forgot to paste that in. Here you go!
March 15, 2017 at 1:32 pm #1408438Hi There,
Please add the following code to Appereance Customizer Custom CSS
.x-container>.offset { margin: 0px auto; }
Hope it helps
Joao
March 17, 2017 at 1:06 pm #1411293Sorry Joao – there is still a huge white space on the mobile version.
March 17, 2017 at 10:44 pm #1411794Hi There,
First thing first, please add the missing closing bracket “}” at the bottom of your custom CSS. Else any custom CSS we added wont work.
Only then you can add this:
/*Reset on mobile the homepage 1st section and its column's top padding*/ @media (max-width: 767px) { .home #x-section-1 .x-column.x-sm, .home #x-section-1 { padding-top: 0 !important; } }
Hope it helps, Cheers!
March 21, 2017 at 5:09 pm #1415540I think I figured out what is happening. There is a title in white that is taking up space at the top. How do I get rid of that?
March 22, 2017 at 5:44 am #1416061Hi There,
Please add this CSS under Customizer > Custom > Global CSS:
@media (max-width: 767px){ .x-header-landmark.x-container.max.width { display: none; } }
Hope it helps 🙂
-
AuthorPosts