By default, the panes in the checkout form are collapsible. if you want to remove the collapsible features, you could customize the theme_uc_cart_checkout_form($form) function in your theme template.php.
function <theme>_uc_cart_checkout_form($form) {
foreach ($form['panes'] as &$pane) {
if (isset($pane['#collapsible'])) {
$pane['#collapsible'] = 0;
}
}
return drupal_render($form);
}
Done =)
Reference:

Most helpful and concise, thank you!
LikeLike
Hi Scott, good to know that it can help =D
LikeLike
Much appreciated – just what I was looking for.
LikeLike
You are welcome. =)
LikeLike