- 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-12-2023 01:33 AM
Hi Jaheer,
Its working perfect. Thank you very much 🙂
Request you to , I need a support on portal if you don't mind please ping me personally to mail: mohamed.yasin9030@gmail.com.
Looking forward to hearing from you soon.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2023 01:38 AM
@Yasin Shaik11 I will be busy with my work, so could not help you personally. But you can tag me in your posts.
Thank you.
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:44 AM
@jaheerhattiwale Sure Thanks,
Could you please show me, How can i tag you while raising a question ?
- 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
03-19-2023 04:43 AM
Can you please confirm me as a Best Practice where should I add the above CSS?
I tried adding in Homepage and it works for me