How to move Header menus Knowledge, support & Announcements to move beside logo on CSM Portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 04:30 AM
Hi,
I want to move Header menus Knowledge, support & Announcements to move beside logo on CSM Portal how to do it can some one help on this, it will be grate.
Thanks!
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 10:23 PM
Hi @manisa ,
can you try something like in CSS
CSS:
.navbar{
display: flex;
}
.navbar::after{
display: none;
}
.navbar-right{
flex-direction: row;
justify-content: space-between;
width: 100%;
}
Please mark helpful & correct answer if it's really worthy for you.
Thanks,
BK