Text Only
BA
Code With ACF Integration
HTML
<!-- BA -- Start ------------------------------> <?php if ( have_rows( 'ba' ) ) : ?> <?php while ( have_rows( 'ba' ) ) : the_row();?> <section class="ba"> <div class="container"> <div class="row"> <div class="col-12"> <h2><?php echo get_sub_field('header'); ?></h2> <p><?php echo get_sub_field('paragraph'); ?></p> </div> </div> </div> </section> <?php endwhile; ?> <?php endif; ?> <!-- BA -- END ------------------------------>
CSS
/* -- BA -- Start ------------------------------ */ .ba h2{ text-align: center; font-weight: 600; } /* -- BA -- END ------------------------------ */
bc1
Code Only (Without ACF Integration)
HTML
<!-- BC1 -- Body Content 1 -----------------------> <section class="wa_bc1"> <div class="container"> <div class="row wa_bc1_line"> <div class="col-12 col-lg wa_bc1_lft mt-4"> <h3>OUR COMPANY</h3> <p>We provide private, affordable transportation to and from airports, amusement parks, hotels, business events and customized destinations.</p> <p>We also provide courier services specializing in envelopes and small packages.</p> <p>We are a family run business, fully insured and can accommodate groups of up to 15 people. We are based in Lancaster Country and are currently serving PA, DE, MD, NJ and NY.</p> </div> <div class="col-12 col-lg-auto wa_bc1_rgt mt-4"> <h3>OUR SERVICES</h3> Corporate Travel<br> Weddings & Anniversaries<br> Airport Transfers<br> Proms & Graduations<br> Bachelor/ette Parties<br> Night on the Town </div> </div> </div> </section> <!-- BC1 End -------------------------------------->
CSS
/* BC1 Body Content 1 Start -------------------------------------------*/ .wa_bc1{ color: #2b2b2b; font-size: 1.1em; } .wa_bc1_line{ border-bottom: solid 1px #989898; padding-bottom: 10px; } .wa_bc1_lft h3{ color: #3541a1; font-weight: bold; } .wa_bc1_rgt{ color: #3541a1; font-weight: bold; } .wa_bc1_rgt h3{ font-weight: bold; color: #f9a90c; } /* BC1 End ----------------------------------------------------------*/
BCCB
Code With ACF Integration
HTML
<!-- BCCB -- Body Content 2 items -----------------------> <?php if ( have_rows( 'bccb' ) ) : ?> <?php while ( have_rows( 'bccb' ) ) : the_row();?> <section class="wa_bccb"> <div class="container"> <div class="row"> <div class="col-12"> <div class="wa_bccb_h_ln"></div> <div class="wa_bccb_h"><h2><?php echo get_sub_field('title'); ?></h2></div> <div class="wa_bccb_h3"><h3><?php echo get_sub_field('subhd'); ?></h3></div> </div> <div class="col-12 col-lg-6"> <div class="wa_bcca_t"> <?php echo get_sub_field('col1'); ?> </div> </div> <div class="col-12 col-lg-6"> <div class="wa_bcca_t"> <?php echo get_sub_field('col2'); ?> </div> </div> </div> </div> </section> <?php endwhile; ?> <?php endif; ?> <!-- BCCB END ------------------------------------->
CSS
/*-- BCCB -- -----------------------*/ .wa_bccb{ margin-top: 40px; } .wa_bccb_h{ text-align: center; background-color: #FFF; margin-left: auto; margin-right: auto; width: fit-content; padding-left: 10px; padding-right: 10px; } .wa_bccb_h h2{ text-transform: uppercase; font-weight: 700; color: #00793c; } .wa_bccb_h3 h3{ color: #d2ab67; text-align: center; font-family: 'Libre Baskerville', serif; font-weight: 800; font-size: 1.4em; } .wa_bccb_h_ln{ text-align: center; border-bottom: solid 3px #00793c; margin-bottom: -22px; } .wa_bccb ul{ margin-left: 0; padding-left: 20px; } /*-- BCCB END -------------------------------------*/