I'm using a theme that added an array of meta box fields to the "Add New Post" on the Dashboard and would like to style the results of the meta box content differently than the post itself.
$meta_box = array(
'id' => 'my-meta-box',
'title' => 'Location',
'page' => 'post',
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'Address ',
'desc' => 'Your Streen address',
'id' => 'ADDRESS',
'type' => 'textarea',
'std' => ''
),
array(
'name' => 'City ',
'desc' => 'Your CIty',
'id' => 'CITY',
'type' => 'textarea',
'std' => 'Your City or nearest Metro Area'
),
array(
'name' => 'Phone Number ',
'desc' => 'Your Phone Number',
'id' => 'PHONE',
'type' => 'textarea',
'std' => 'phone number'
),
)
);
I would like title "Address, City etc.. to be styled differently than the post, and perhaps even further customization of these items that get added to the post.