How to add boarders for esc portal page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 09:44 PM
I want to add a boarder only on left side of esc portal page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 09:54 PM
Hi @Sailakshmi Budd ,
You can add custom CSS styles to your portal. Here's an example of how you can add a left border to a specific element:
/* Add a left border to the container element */
.your-portal-container {
border-left: 2px solid #000; /* You can customize the width and color */
}
Thanks,
Ratnakar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 10:02 PM
Hello @sailakshmi ,
Can you please provide a screenshot of where you want to add a border?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 10:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 11:09 PM
1)Navigate to Service Portal and open pages:
2) Select page on which you want to add border and add following CSS in Page Specific CSS:
main.body {
border-left: 2px solid #ff0000; /* Add your colour*/
}
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.