How to style table headers

No matter what I do, I can't seem to manipulate my userstyle.css to change the font of the text within headers of rendered markdown tables.

I've tried

* {
    font-family: "Adobe Caslon Pro";
    font-size: 14px;
    line-height: 1.3;
}

.jop-tinymce table td, table td {
	font-family: "Adobe Caslon Pro" !important;	
}

a * {
	font-family: "Adobe Caslon Pro" !important;
}

And I still end up with:

image

Note how the table header is the default font.

1 Like

Try

table th, table td {
    font-family: "Font Family Here" !important;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.