I'm new to perspective. I'm just trying to create a style to apply to a menu tree, so I can set amongst other things the height of the row to reduce the white space around the text. I can do it on a per item basis by adding a value "height" and setting the value in the style, but doing it on a per item basis will be unmanageable.
I've created a style "NavMenu" to be used by all the relevant items, I can't see a way of controlling this in the regular style so moved to css. In css I can control the usual styles e.g. font-size, but I'm struggling to get the height to take the setting.
.psc-NavMenu {
font-size: 50px;
height: 200;
}
For the above the font size applies, but I'm missing something for the height. Any assistance appreciated!