- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 11:40 PM
Hi All,
Need help,
Out of the box, ServiceNow portal header menu is on right but I want to move the header menu on the left side just next to the logo. which widget I need to clone and what CSS code I need to add. please guide me.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2023 01:12 AM
@Yasin Shaik11 Please add the below CSS this should fix the issue
CSS:
.navbar{
display: flex;
}
.navbar::after{
display: none;
}
.navbar-right{
flex-direction: row;
justify-content: space-between;
width: 100%;
}
Result:
Please mark all the answers on this question as correct answers
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2023 01:46 AM
You can just write @jaheerhattiwale
Like how you added in the reply
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 11:43 PM
Hi @Yasin Shaik11 ,
You can use the solution : https://www.servicenow.com/community/now-platform-forum/move-left-header-menu-of-service-portal/m-p/...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 11:53 PM
@Yasin Shaik11 Go to "Service Portal > Portals"
Open your portal record and add below css in "CSS variables" field
CSS:
.navbar{
display: flex;
align-items: flex-start;
flex-direction: row;
}
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2023 12:46 AM
Hi Jaheer,
Its working as expected, Thanks
Here I want to keep the login icon as same as earlier. how can we do that one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2023 12:47 AM
@Yasin Shaik11 Is login icon not at the same place?
ServiceNow Community Rising Star, Class of 2023