Navigation Component Generated HTML: Difference between revisions


mNo edit summary
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
====Navigation component dynamically generated html:====
====Navigation component dynamically generated html:====
<br>
<source lang="html4strict">


<pre>
<div class="component navigation_component">
<div class="component navigation_component">
   <h2><span>navigation component title</span></h2>
   <h2><span>navigation component title</span></h2>
Line 16: Line 18:
   </div>
   </div>
</div>
</div>
</pre>
 
</source>




When a user adds a navigation component to their Viviti site, this is the html that is dynamically generated.
When a user adds a [[NavigationComponent | Navigation component]] to their site, this is the html that is dynamically generated.


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

Latest revision as of 10:34, 12 October 2010

Navigation component dynamically generated html:


<div class="component navigation_component">
  <h2><span>navigation component title</span></h2>
  <div class="component_content">
    <ul class="navigation">
      <li>
        <div class="navigation_label">navigation label name</div>
        <ul>
          <li>sub link name</li>
        </ul>        
      </li>
      <li>link name</li>
    </ul>
  </div>
</div>


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