Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
I downloaded Couch today and uploaded it to my web server. I followed the installation instructions and it was up and running. But I couldn't seem to create any editable regions. I have posted my code below.
*Without Couch*
<!-- Title Page -->

<div class="row">
<div class="span12">
<div class="title-page">
<h2 class="title" id="untitled-region-3">Who's Chris Pautler?</h2>
<h3 class="title-description" id="untitled-region-4">View My Biography Below!</h3>
</div>
</div>
</div>

<!-- End Title Page -->

*With Couch*

<!-- Title Page -->

<div class="row">
<div class="span12">
<div class="title-page">
<cms:editable name='title' >
<h2 class="title" id="untitled-region-3">Who's Chris Pautler?</h2>
</cms:editable>
<h3 class="title-description" id="untitled-region-4">View My Biography Below!</h3>
</div>
</div>
</div>

<!-- End Title Page -->
try

<div class="row">
<div class="span12">
<div class="title-page">
<h2 class="title" id="untitled-region-3">
<cms:editable name='title' type='text'>
Who's Chris Pautler?
</cms:editable>
</h2>
<h3 class="title-description" id="untitled-region-4">View My Biography Below!</h3>
</div>
</div>
</div>

--------------------

or better before the head:

<cms:template>
<cms:editable name='title' type='text' />
</cms:template>

then in the body

<div class="row">
<div class="span12">
<div class="title-page">
<h2 class="title" id="untitled-region-3">
<cms:show title />
</h2>
<h3 class="title-description" id="untitled-region-4">View My Biography Below!</h3>
</div>
</div>
</div>
2 posts Page 1 of 1