Hello. 
 
Using magento CE 1.9.3.1 RWD theme . 
 
Trying to move some attributes such as SKU , Manufacturer and Model Number ( custom ) to show under my Product name using ul li tag. i found this code that im currently using to show custom attribute in a tab :
 
<?php echo $_product->getResource()->getAttribute('technical_data')->getFrontend()->getValue($_product); ?>
 
This works fine .. but I don't know how to wrap this and same code for other attributes into ul li as well as adding Translatable Labels for this. so basically i need them to show as :
 
- sku: 1111
 
- mfr model# :34343
 
- Manufacturer : some guy 
 
 
any help with some code would be great . 
Thanks.