Hi Jed,
The following HTML marking in template.html is substituted for the TypoScript code below it. I've included the entire script however I have not had time to test it. Also you will need to modify the CSS to account for no links. Have a look here to see a simpler version of the CSS for hints.
http://www.mediatech.net/fileadmin/themes/zlightpro/css/layout.css
Gregory Remington
Mediatech Consulting, Inc.
Phone : +1 (760) 525-1770 . Fax: +1 (760) 542-1990 . Skype: gremington
template.html
TypoScript:
The following HTML marking in template.html is substituted for the TypoScript code below it. I've included the entire script however I have not had time to test it. Also you will need to modify the CSS to account for no links. Have a look here to see a simpler version of the CSS for hints.
http://www.mediatech.net/fileadmin/themes/zlightpro/css/layout.css
Gregory Remington
Mediatech Consulting, Inc.
Phone : +1 (760) 525-1770 . Fax: +1 (760) 542-1990 . Skype: gremington
template.html
<!--###VERTNAV### START -->
<div class="vertnav1"><a href="#">Level 1 item</a></div>
<div class="vertnav1-act"><a href="#">Level 1 item active</a></div>
<div class="vertnav2"><a href="#">Level 2 item</a></div>
<div class="vertnav2-act"><a href="#">Level 2 item active</a></div>
<div class="vertnav3"><a href="#">Level 3 item</a></div>
<div class="vertnav3-act"><a href="#">Level 3 item active</a></div>
<!--###VERTNAV### STOP-->
<div class="vertnav1"><a href="#">Level 1 item</a></div>
<div class="vertnav1-act"><a href="#">Level 1 item active</a></div>
<div class="vertnav2"><a href="#">Level 2 item</a></div>
<div class="vertnav2-act"><a href="#">Level 2 item active</a></div>
<div class="vertnav3"><a href="#">Level 3 item</a></div>
<div class="vertnav3-act"><a href="#">Level 3 item active</a></div>
<!--###VERTNAV### STOP-->
TypoScript:
# Vertical Navigation
#######################################
subparts.VERTNAV = HMENU
#subparts.VERTNAV.entryLevel = 1
subparts.VERTNAV.special = directory
subparts.VERTNAV.special.value = 1
#subparts.VERTNAV.excludeUidList = 1,2,3
subparts.VERTNAV.1 = TMENU
subparts.VERTNAV.1 {
# Normal state properties
#######################################
NO.allWrap = <div class="vertnav1"> | </div>
# Active state and set properties
#######################################
SPC = 1
SPC.allWrap= <div class="vertnav1-act"> | </div>
SPC.doNotLinkIt = 1
SPC.doNotShowLink = 0
}
# Second level menu-object
#######################################
subparts.VERTNAV.2 = TMENU
subparts.VERTNAV.2 {
# Normal state properties
#######################################
NO.allWrap = <div class="vertnav2"> | </div>
# Enable active state and set properties:
#######################################
SPC = 1
SPC.allWrap= <div class="vertnav2-act"> | </div>
SPC.doNotLinkIt = 1
SPC.doNotShowLink = 0
}
# Third level menu-object
#######################################
subparts.VERTNAV.3 = TMENU
subparts.VERTNAV.3 {
# Normal state properties
#######################################
NO.allWrap = <div class="vertnav3"> | </div>
# Enable active state and set properties:
#######################################
SPC = 1
SPC.allWrap= <div class="vertnav3-act"> | </div>
SPC.doNotLinkIt = 1
SPC.doNotShowLink = 0
}
#######################################
subparts.VERTNAV = HMENU
#subparts.VERTNAV.entryLevel = 1
subparts.VERTNAV.special = directory
subparts.VERTNAV.special.value = 1
#subparts.VERTNAV.excludeUidList = 1,2,3
subparts.VERTNAV.1 = TMENU
subparts.VERTNAV.1 {
# Normal state properties
#######################################
NO.allWrap = <div class="vertnav1"> | </div>
# Active state and set properties
#######################################
SPC = 1
SPC.allWrap= <div class="vertnav1-act"> | </div>
SPC.doNotLinkIt = 1
SPC.doNotShowLink = 0
}
# Second level menu-object
#######################################
subparts.VERTNAV.2 = TMENU
subparts.VERTNAV.2 {
# Normal state properties
#######################################
NO.allWrap = <div class="vertnav2"> | </div>
# Enable active state and set properties:
#######################################
SPC = 1
SPC.allWrap= <div class="vertnav2-act"> | </div>
SPC.doNotLinkIt = 1
SPC.doNotShowLink = 0
}
# Third level menu-object
#######################################
subparts.VERTNAV.3 = TMENU
subparts.VERTNAV.3 {
# Normal state properties
#######################################
NO.allWrap = <div class="vertnav3"> | </div>
# Enable active state and set properties:
#######################################
SPC = 1
SPC.allWrap= <div class="vertnav3-act"> | </div>
SPC.doNotLinkIt = 1
SPC.doNotShowLink = 0
}
