Employee center portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 02:43 AM
Hi team,
- we are facing one issue in employee center portal, when we are trying to print any page then it prints as columns of 2 - 3 centimetres instead of showing the whole page.
tried from diff browsers also
previously it was working fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 02:50 AM
@Snehal Bhagat1 please provide screenshots to understand it better
/* If my response wasn’t a total disaster ↙️ ⭐ drop a Kudos or Accept as Solution ✅ ↘️ Cheers! */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 05:04 AM
This how, its showing.
this how it’s displaying.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 05:22 AM
Try this :
Navigate to Service Portal > Themes → Open the theme used by Employee Center.
Scroll to the CSS section.
Add this CSS override:
@media print {
body, html {
width: 100% !important;
max-width: 100% !important;
}
/* Make all portal containers print full width */
.sp-page-layout, .container, .row, [class*="col-"] {
width: 100% !important;
max-width: 100% !important;
float: none !important;
display: block !important;
}
}
Clear cache and retry printing.
Now the portal page should print in full width instead of 2–3 cm columns.
Shashank Jain
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 06:12 AM
Tried above solution but not worked.