- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 01:20 AM
I have a white gap between the navbar divider & homepage search, I don't have any containers or empty widgets above homepage search. How do i close this gap?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2018 06:00 AM
Hi there,
There has worked out the following class on my end added to the Page Specific CSS
body .padding-top {
padding-top: 0rem;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 01:45 AM
Hi Richard,
You can try to go to page designer for the page, and go on the options for the container containing the search field etc. Here, you can set "move to header" to be checked, like the attached picture. Not guaranteed that it will fix things the way you want it, but it should be worth a try.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 01:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 01:49 AM
Hi Richard
I assume you've double checked the image for any white space? I would also check the 'Page Specific CSS' on the Index portal page and see if any padding is being applied. It should be 0px if you don't want anything there.
Hope this helps
Matt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2018 03:23 AM
I found using the Move to Header option you are unable to scroll (I guess because that element is now fixed to the header). I ended up copying the CSS from the OOB demo portal for the index page, which solved the white gap and scroll issues.
section.page {
background-color: $sp-homepage-bg;
}
section.page, main.body {
padding-top: 0px !important;
}