- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 01:55 AM
Hi!
I would like to formatting the questions on csm portal.
for example, one of the question should be bold, but the html code not working.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 02:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 02:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 02:52 AM
TLDR: you generally can't do this.
Otherwise:
The [code] tags have no effect in the question field, they are meant to be used for journal entry fields, but they are often disable on instances due to security concerns.
What you could try is creating a macro variable, and adding your CSS in the macro, referencing the actual variable on the page (from the DOM), e.g.:
input[id=”IO:********************************”] {
font-weight: bold;
}
I have never actually tried this is just theory on my side. Also, this is quite hacky still as you can see.