DavidBeoulve
ISP
I am designing a table-less site.
On the left side of the site, I want to have this kind of navigation:
or (image altered mildly to clarify what the links mean -- I'll play with how it looks slater)
This navigation is supposed to show the current stack in the first section (Home -> Candidates -> Page 1, as bread crumbs do), then a special box showing the pages that are at the same level you're on now (all of "Page 1"'s links) and beneath that, the pages from the previous level (all of "Candidates"'s links, the parent).
My plan was to have five DIVs:
1: Invisible container
2: Background, which appears under the next 3
3: Stack Navigation, the first words you see
4: Child/Current Navigation - the outset box
5: Previous stack links, the last set of words you see
#1 CONTAINER DIV:
This Div should contain the others.
#2 BACKGROUND DIV:
The background DIV can't contain DIV#4 or DIV#2's width is altered -- perhaps I should make its border part of the image.
#3 STACK NAV DIV:
A UL formatted to appear this way -- I need it to push down DIV#4 and cumulatively increase #2's height.
#4 CURRENT NAV DIV:
Current level links - I need it to push down DIV#5 and cumulatively increase #2's height.
#5 PARENT LEVEL DIV:
Previous level links - I need it to cumulatively increase #2's height.
Sounds simple, but I'm lost. How can I accomplish this?
On the left side of the site, I want to have this kind of navigation:
or (image altered mildly to clarify what the links mean -- I'll play with how it looks slater)
This navigation is supposed to show the current stack in the first section (Home -> Candidates -> Page 1, as bread crumbs do), then a special box showing the pages that are at the same level you're on now (all of "Page 1"'s links) and beneath that, the pages from the previous level (all of "Candidates"'s links, the parent).
My plan was to have five DIVs:
1: Invisible container
2: Background, which appears under the next 3
3: Stack Navigation, the first words you see
4: Child/Current Navigation - the outset box
5: Previous stack links, the last set of words you see
#1 CONTAINER DIV:
This Div should contain the others.
#2 BACKGROUND DIV:
The background DIV can't contain DIV#4 or DIV#2's width is altered -- perhaps I should make its border part of the image.
#3 STACK NAV DIV:
A UL formatted to appear this way -- I need it to push down DIV#4 and cumulatively increase #2's height.
#4 CURRENT NAV DIV:
Current level links - I need it to push down DIV#5 and cumulatively increase #2's height.
#5 PARENT LEVEL DIV:
Previous level links - I need it to cumulatively increase #2's height.
Sounds simple, but I'm lost. How can I accomplish this?