Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
I'm new to this one, having used many over the years, but cannot figure out how to do this:

Code: Select all
<div class="col-md-6 welcome-left">
    <div class="welcome-one">
        <div class="wel-left">
            <span class="glyphicon glyphicon-usd " aria-hidden="true"></span>
        </div>
        <div class="wel-right">
            <h4>Donate Money</h4>
            <p>There are several ways to help HCCM by making monetary donations.<br /><a href="money.php">More&#8230;</a></p>
        </div>
        <div class="clearfix"></div>
    </div>
    <div class="welcome-two">
        <div class="wel-left">
            <span class="glyphicon glyphicon-cutlery " aria-hidden="true"></span>
        </div>
        <div class="wel-right">
            <h4>Donate Food</h4>
            <p>The Food Pantry needs food year-round to help feed approximately 380 families each month.<br /><a href="food.php">More&#8230;</a></p>
        </div>
        <div class="clearfix"></div>
    </div>
</div>   
<div class="col-md-6 welcome-left">
    <div class="welcome-one">
        <div class="wel-left">
            <span class="fa fa-shopping-bag " aria-hidden="true"></span>
        </div>
        <div class="wel-right">
            <h4>Donate Clothes</h4>
            <p>Hill Country Community Ministries gives new and gently used clothing to over 75 families per month.<br /><a href="clothes.php">More&#8230;</a></p>
        </div>
        <div class="clearfix"></div>
    </div>
    <div class="welcome-two">
        <div class="wel-left">
            <span class="fa fa-car " aria-hidden="true"></span>
        </div>
        <div class="wel-right">
            <h4>Donate a Vehicle</h4>
            <p>To donate a vehicle to HCCM, click or call:<br />
<a href="http://www.v-dac.com/org/?id=74-2309435" target="blank"><img src="//www.v-dac.com/images/v_dacLogo.gif" width="120" height="65" alt="Vehicle Donation" border="0"></a>
            </p>
        </div>
        <div class="clearfix"></div>
    </div>
</div>

I've gone through the tutorial and see that the example on the index page is how it needs to be done but I can't make it work right. Can anyone help out, here?

The editable regions would be:
Code: Select all
<h4>Donate Money</h4>

Code: Select all
There are several ways to help HCCM by making monetary donations.

Code: Select all
<a href="money.php">More&#8230;</a>

If possible, I'd also like to offer a "selector" for the glyphicon icon in here:
Code: Select all
<span class="glyphicon glyphicon-usd " aria-hidden="true"></span>
Your use-case needs three repeatable regions (with a possible fourth containing the icons) - what seems to be confusing you is how to repeat them per row.

For that, the easiest solution would be to use 'repeatable-regions' - http://docs.couchcms.com/concepts/repea ... gions.html
The newer version of Couch (viewtopic.php?f=5&t=11105) also allows showing the regions in a stacked manner so perhaps you'd want to take a look at that too.

As for the icons, please see viewtopic.php?f=2&t=7480#p11162

Hope it helps.
2 posts Page 1 of 1