- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2024 08:13 PM
Hi there
We are wanting to style a text block on the catalog pages within our Service Portal. the block of text is added Description test added on the Category page
and displays on the catalog pages
What we want to do is increase the font size
i have hound this page within the portal designer ans am hoping i can use the page specific CSS feild to add some magic code but not sure how to target it to just that block of text
inctance/$spd.do#/sp/editor/sc_category/
any help would be great
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2024 08:50 PM
Hi @Fraggle Rock,
You can modify the CSS of the widget instance.
- Within the Page Designer, select the edit button of the SC Category Page widget
- Select the hamburger icon on the pop up page and select Open in platform
- In the form, modify its CSS value to something like the below and save:
.hidden-xs.break-word{
font-size: 40px;
}
Outcome:
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2024 08:50 PM
Hi @Fraggle Rock,
You can modify the CSS of the widget instance.
- Within the Page Designer, select the edit button of the SC Category Page widget
- Select the hamburger icon on the pop up page and select Open in platform
- In the form, modify its CSS value to something like the below and save:
.hidden-xs.break-word{
font-size: 40px;
}
Outcome:
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 06:24 PM
thanks that worked a treat