templates:section
AJAX
ajax:delayedload ajax:event ajax:navigation ajax:region
Data
data:calendar data:column data:postrepeater data:productbrandrepeater data:productcategoryrepeater data:productrepeater data:repeater data:table data:template data:tree
Forms
forms:address forms:captcha forms:checkbox forms:checkboxgroup forms:codeeditor forms:combobox forms:datepicker forms:dialogbox forms:editbox forms:fileupload forms:form forms:hidden forms:money forms:officeuseregion forms:option forms:password forms:paymentmethod forms:radiobutton forms:radiobuttongroup forms:row forms:searchbox forms:signature forms:slider forms:spinbox forms:submitbutton forms:submitimage forms:submitlink forms:successcontent forms:textarea forms:timepicker
Layout
layout:gallery layout:productgallery layout:rotator layout:stepper layout:stepperpanel layout:tablist layout:tablistitem
Logic
logic:dependency logic:else logic:if logic:include logic:parse logic:variable
Navigation
navigation:breadcrumbs navigation:item navigation:primary navigation:secondary
Personalisation
personalisation:firstname personalisation:fullname personalisation:lastname personalisation:other
Standard
standard:audio standard:embed standard:icon standard:image standard:link standard:script standard:tooltip standard:video
Templates
templates:button templates:card templates:column templates:fancybox templates:faq templates:flexlayout templates:header templates:row templates:section
ATTRIBUTES
EXAMPLES
templates:styles templates:teammember templates:testimonial
Regions
regions:content regions:contentadditional regions:security regions:togglable
Third Party
thirdparty:googlemap thirdparty:googlemapmarker

<templates:section> </...>

Sections are a layout tool used to visually group, and align content to a container. Sections can be nested.
Section container sizes (sm md lg) and 'full-height' sizing may be overriden through use of the <templates:styles> control, placed within the <head> of the website design theme (see examples below).

Content

any
The content to render inside the Section.

Attributes

bgColor
string
The Color of the background
bgImage
string
Background Image
bgImageBlur
string
The amount of image blur on the background image
bgParallax
string
Wheather to use parallax scrolling
bgParallaxSpeed
int
Parallax scrolling speed
bgPosition
string
The position of the background
bgWashColor
string
The wash color to use over the background image
bgWashOpacity
string
The opacity of the color wash
contentSize
string
The size of the content container

Valid options: sm md lg
fullHeight
bool
Full Height

When set to true, the Section will span no less than the full height of the page. Content in the section is centered vertically.
height
string
Height

Sets the height of the element. The default units are pixels. include the percentage symbol % to user percentage values.
id
string
(Required) Give this control a unique id. Can be accessed in the client DOM (eg, document.getElementById('myid') or in the server DOM using [? $myid ?] or [? $('myid') ?]).
paddingBottom
string
The padding of the section
paddingLeft
string
The padding of the section
paddingRight
string
The padding of the section
paddingTop
string
The padding of the section
width
string
Width

Sets the width of the element. The default units are pixels. include the percentage symbol % to user percentage values.
bggradient
string
Background Gradient

Examples

Nested Sections

Multiple template section inside parent section container

HTML:

<templates:section bgcolor="#edd2d5" paddingTop="3rem" paddingBottom="3rem" paddingLeft="2rem" paddingRight="2rem"> <templates:row verticalAlignColumns="flex-start"> <templates:column width="6"> <standard:image width="100%" height="344" maintainaspect="crop" src="https://images.unsplash.com/photo-1475472279917-f29941cd9bc1?ixid=Mnw2ODg1fDB8MXxzZWFyY2h8Mnx8Zmxvd2V8ZW58MHx8fHwxNjc5MzcwMzA1&" style="line-height: 0"/> </templates:column> <templates:column width="6"> <templates:section paddingLeft="2rem" paddingRight="2rem" paddingBottom="3rem" paddingTop="3rem" bgcolor="#fbf8f8"> <h2>Your Heading Here</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<br /><br /></p> <templates:button variant="Classic" color="#fff" borderRadius="35" bgcolor="#d88e97">Read More</templates:button> </templates:section> </templates:column> </templates:row> </templates:section>

Override Section Sizing

Section container sizes (sm md lg) and 'full-height' sizing may be overriden through use of the <templates:styles> control, which is placed within the <head> of the website design theme.

HTML:

<templates:section bgcolor="#edd2d5" paddingTop="3rem" paddingBottom="3rem" paddingLeft="2rem" paddingRight="2rem"> <h2>Your Heading Here</h2> <p>Enter your content here.</p> </templates:section> <!-- The below should reside within the <head> of the Website Design --> <templates:styles section-fullheight="90vh" sectionsize-sm="540px" sectionsize-md="720px" sectionsize-lg="1200px" />