@cderv
Thanks. I cannot figure out the pre and code elements from inspecting via a browser >> Developer Tools.
But, am I on the right track if I found this in a customized css file for another Distill web page ?:
/* Code chunks */
d-article pre { /* Chunk output */
border-radius: 5px; /* Rounded edges */
font-size: 12px;
color: #fff;
background-color: #696969;
padding: 5px 5px 5px 18px;
}
d-article div.sourceCode pre { /* Chunk code */
border-radius: 5px; /* Rounded edges */
background-color: #fff;
color: black;
padding: 5px 5px 5px 18px;
}
d-article div.sourceCode {
background-color: transparent;
}
Thanks.