Navigation Component Generated HTML: Difference between revisions


mNo edit summary
Line 18: Line 18:


</source>
</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 navigation component to their Viviti site, this is the html that is dynamically generated.


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

Revision as of 15:45, 1 April 2009

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 Viviti site, this is the html that is dynamically generated.