schachandra
Member
Posted 1 year ago #
Hello everyone,
Here's what I am trying to do: I have one page called "biography," with the child pages "contact" and "works." "Works" has the child pages "work 1" and "work 2." How can I list "work 1" and "work 2" (but not "works") on "biography" and contact"? Thank you very much!
Sandra
schachandra
Member
Posted 1 year ago #
Never mind, I figured out my own solution. I put everything in a div called "listaobras" and put the following code into my stylesheet:
.listaobras li {visibility:hidden;}
.listaobras li ul {visibility:hidden;}
.listaobras li ul li {visibility:hidden;}
.listaobras li ul li ul {visibility:visible;}
.listaobras li ul li ul li {visibility:visible;}
I hope this will help someone else!