How to add background image on Portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Step 1: Upload the Image
Navigate to the
db_imagetable.Upload the image that you want to use as the background.
Note the Name of the image record (this will be used in CSS).
Step 2: Open Page Editor
Open your Service Portal.
Click on Instance in Page Editor.
In the Page Editor hierarchy, select the Landing Page (or the page where you want the background image applied).
Step 3: Add CSS
Scroll to the CSS section of the selected page.
Add the following CSS:
body {
background-image: url('la_jolla_sp_login_background.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
background-image: url('la_jolla_sp_login_background.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
He is working on the page with id landing. It is the login page of the sp portal, recognized that image instantly =D
