If you're trying to change aspects of the template affecting how options are displayed and How to move custom options and price to right sidebar
Follow Some steps for custom modification.
Step 1 :
Goto app/design/frontend/YOUR_THEME/Template/template/catalog/product/view/type/options/configurable.phtml
Step 2 :
Open "configurable.phtml" and Findout This Code
<?php echo $this->getChildHtml('after') ?>
Than After Add this Code
<?php echo $this->getPriceHtml($_product); ?>
<?php echo $this->getChildHtml('bundle_prices') ?>
<?php echo $this->getTierPriceHtml() ?>
Step 3 :
Goto app/design/frontend/YOUR_THEME/Template/template/catalog/product/view.phtml
Step 4 :
Remove This
<Div>
<div class="price-info">
<?php echo $this->getPriceHtml($_product); ?>
<?php echo $this->getChildHtml('bundle_prices') ?>
<?php echo $this->getTierPriceHtml() ?>
</div>
Elsner Technologies