I am creating a CMS page in magento as a teaser for an upcoming product. I am using two columns with a right bar and using the layout update XML in the backend to call some custom blocks I make for the right side.
Well right now I am loading just placeholders then going to edit the phtmls after the fact.
If I use two blocks on the right it looks fine.. but if I add more, then the whole footer corrupts and moves to the right column.
I am trying to get 3 custom blocks on the right side.
Here is my layout update XML
<reference name="right">
<block type="newsletter/subscribe" name="left.newsletter" template="newsletter/rightsubscribe.phtml"/>
<block type="core/template" name="name1" template="page/custom/custom1.phtml"/>
<block type="core/template" name="name2" template="page/custom/custom2.phtml"/>
</reference>
Here is the HTML of the customs blocks I am using.
<div id="shop-with-confidence" class="white-box">
<h3>Custom1</h3>
<div class="white-box-inner">
Testing1
</div>
<div id="shop-with-confidence" class="white-box">
<h3>Custom2</h3>
<div class="white-box-inner">
Testing2
</div>
Does anyone have any idea why that would be wrecking the page I am editing?