This function can further divide up a cell given from the arrangement using rows. It is a handy when you want a more specific layout for part of your report.
Basic format: "content_name": ["create_bootstrap_rows", "no_of_rows", "location_id"]
e.g: "row_home_set_pieces": ["create_bootstrap_rows", 2, "#div_home_set_pieces"]
Here is more accompanying elements to represent the above visualisation which has 2 rows and 3 columns:
e.g: "text_home_set_pieces": ["create_text", "Set Pieces", "#B3", 16, "grey", "center"]
, "div_home_set_pieces": ["create_div_background", "images/Football/setpieces.png", "#B3"]
, "row_home_set_pieces": ["create_bootstrap_rows", 2, "#div_home_set_pieces"]
, "home_set_pieces_r1_col": ["create_bootstrap_columns", 3, "#row_home_set_pieces_1"]
, "home_set_pieces_r2_col": ["create_bootstrap_columns", 3, "#row_home_set_pieces_2"]
, "card_home_set_pieces_l1": ["create_data_card", "Corner L", "home_corner_left", "#home_set_pieces_r1_col_1", "transparent", "", 70]
, "card_home_set_pieces_c1": ["create_data_card", "Penalties", "home_pens", "#home_set_pieces_r1_col_2", "transparent", "", 70]
, "card_home_set_pieces_r1": ["create_data_card", "Corner R", "home_corner_right", "#home_set_pieces_r1_col_3", "transparent", "", 70]
, "card_home_set_pieces_l2": ["create_data_card", "Free Kick L", "home_fk_left", "#home_set_pieces_r2_col_1", "transparent", "", 70]
, "card_home_set_pieces_c2": ["create_data_card", "Central FK", "home_fk_centre", "#home_set_pieces_r2_col_2", "transparent", "", 70]
, "card_home_set_pieces_r2": ["create_data_card", "Free Kick R", "home_fk_right", "#home_set_pieces_r2_col_3", "transparent", "", 70]
Where 'transparent' is a stored colour : "transparent": "#EFEFEF00" (this is grey with 00 at the end which makes the colour 0% opaque or 100% transparent)