View list customization

Hello members,

Does anyone know how to make the text size of view-list “view 1” larger than the “view 2”?

캡처1

I know how to customize the view list in general using head-end.html but I don’t know how to change certain view-list only.

Looking forward to hearing from anyone!

You can use the :nth-of-type CSS selector :nth-of-type() - CSS: Cascading Style Sheets | MDN, for example:

.view:nth-of-type(1) {
  font-size: 15px;
}
1 Like