Service Portal: Title is hidden in mobile view
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-25-2017 11:10 PM
Hi,
In the new service portal the title is hidden in mobile view. Is it possible to display the title in mobile view and how?
Hope someone can help 🙂
Normal view:
Mobile view:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2017 06:32 AM
This is probably due to some CSS somewhere in the Service Portal hiding that element when the screen goes below a certain width, which is how bootstrap does all of its responsive magic. It looks like the title is wrapped in a div with id="homepage-search" and class="hidden-xs wrapper-xl". Then there is the following bootstrap CSS:
@media (max-width: 767px)
.hidden-xs {
display: none !important;
}
You should just be able to make a copy of the Homepage Search widget and then remove the hidden-xs class from the top level div.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-05-2024 03:34 PM
I know this is an old post, but for the benefit of others, if you don't want to clone the Homepage Search Widget, you can override the .hidden-xs class in the CSS for your page:
#homepage-search.hidden-xs {
display: initial !important;
}