Borderless button css

Hi! I’m using borderless button from reindeermods theme and I have tried to change the font for it.

I can actually do it like this:

.v-button-borderless .v-button-caption {
font-size: 11px;
}

But I wouldn’t like it to affect to all the borderless buttons. Then I have tried like this

.myButton .v-button-borderless .v-button-caption {
font-size: 11px;
}

But this doesn’t work. How should I do this that I can get a borderless button with this font size, but that it wouldn’t affect on all the borderless buttons.

Hi,

Without checking how reindeermods do things, I’m guessing this should do it:

.myButton .v-button-caption {
	font-size: 11px;
}

Best Regards,
Marc

Hi. Thanks. That made it.