- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 11:13 AM
I am using a copy of the report widget to post a calendar report on our portal. Everything is great except it won't display the name of the month at the top:
But when I run the report in the report module, it displays the month and year.
How can I get the month and year to appear on the portal in the report widget?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 12:03 PM
It turns out the issue was that the month and year were there but were invisible due to the font being the same color as the background. I fixed this by updating the CSS for this widget by adding the following:
h2 {
color: black;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 12:03 PM
It turns out the issue was that the month and year were there but were invisible due to the font being the same color as the background. I fixed this by updating the CSS for this widget by adding the following:
h2 {
color: black;
}