Break line on service catalog form.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2017 07:45 AM
Hi All,
I have created break line on service catalog form to separate the sections. Now I have to make the that break line to thick/Dark could you please let me know how I can do that.
is there any other way to give the dark line to separate the sections except macro variable.
Thanks,
Laxman Boddu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2017 08:05 AM
Hi Laxman,
There is no OOB way to modify the behavior of a break except a DOM manipulation.
However, I would think the other way around.
1. Create a macro/widget with the below code(By default OOB break is an Hr element so I am creating my own hr element)
<html>
<head>
<style>
hr {
display: block;
margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
border-style: inset;
border-width: 4px;
}
</style>
</head>
<body>
<hr>
</body>
</html>
2. Add it as a variable in your catalog item.
Please mark correct or helpful if it solves your issue