Hello.How do I set the color of the line block? I want to set the words inside to red.
@zczhangchun welcome to the forum.
Add the below to userstyle.css after any entry you may already have for the code
css element.
.inline-code {
color: red;
}
This should change the `inline code` text to red but not any other code block types.
1 Like
That solves my problem, thank you very much