Styling for Table of Contents

Is there a simple way to create a table of contents where the first layer in the table has the CSS styling of the remaining layers? This would be different from the current behavior where it’s bold and a little larger.

Thank you in advance. Everyone is so helpful here, it is much appreciated.

image

There is a stylesheet setting for font-weight: bold. If you set it as follows, it should change as requested.

.tc-table-of-contents li a {
  font-weight: initial;
}
1 Like

This is perfect, thank you!