Customer portal formatted questions

DoDo labs___
Mega Sage

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.

DoDolabs____4-1723020790334.png

 

DoDolabs____3-1723020719121.png

 

 

 

 

 

1 ACCEPTED SOLUTION
2 REPLIES 2

Bhavya11
Kilo Patron

Laszlo Balla
Mega Sage
Mega Sage

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.