Wondering whether I can use CSS to target a single row and make it a bit larger than the other rows in the table (as one row has a lot more content than the others). What classes can I use to do this? Thanks!
Hi @foresme,
Each row has class like mptt-shortcode-row- with an sequential ID starting from 0 like .mptt-shortcode-row-0, .mptt-shortcode-row-2, etc. You may target them to add custom CSS e.g.:
.mptt-shortcode-row-9 {
height: 200px;
}
Viewing 1 replies (of 1 total)
The topic ‘Different sized rows’ is closed to new replies.