Text or Content Block Component Generated HTML: Difference between revisions


mNo edit summary
mNo edit summary
Line 1: Line 1:
====Custom component dynamically generated html:====
====Custom component dynamically generated html:====
 
<source lang="html4strict">
<pre>
<pre>
<div class="component custom_component">
<div class="component custom_component">
Line 11: Line 11:
</div>
</div>
</pre>
</pre>
 
</source>
When a user adds a custom component to their Viviti site, this is the html that is dynamically generated.
When a user adds a custom component to their Viviti site, this is the html that is dynamically generated.


[[Category:Dynamically Generated HTML]]
[[Category:Dynamically Generated HTML]]

Revision as of 22:07, 13 January 2009

Custom component dynamically generated html:

<pre>
<div class="component custom_component">
 <h2><span>custom component title</span></h2>
  <div class="component_content">
    <div>
     <p>custom component content</p>
    </div>    
  </div>
</div>
</pre>

When a user adds a custom component to their Viviti site, this is the html that is dynamically generated.