Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    hi,

    Im building a website with a navigation system where each page is a tab inside one index.php file.
    I have two tabs that would display images "sculptures" and "wearable" here is the whole code to make it easier to see:

    <body>
    <ul class="Tabs">
    <li class="sculptures"><a href="#sculptures">SCULPTURE</a></li>
    <li class="wearable"><a href="#wearable" >WEARABLE</a></li>
    <li class="news"><a href="#news">NEWS</a></li>
    <li class="contact"><a href="#contact">CONTACT</a></li>
    </ul>


    </div> <!-- end #header -->


    <div id="mainContent">
    <div class="items">
    <div id="home"></div>
    <div id="sculptures" class="top"><?php include("sculpture.php"); ?></div>
    <div id="wearable" class="top"><?php include("wearable.php"); ?></div>
    <div id="news" class="top"><?php include("news.php"); ?></div>
    <div id="contact" class="top"><?php include("contact.php"); ?></div>
    </div>
    </div> <!-- end #mainContent -->

    </body>
    </html>
    ++++++++++++++++++++++++++
    anyone have any suggestions on how i could work this out so that when you hit "sculpture" it goes straigh to the thumbnails in the sculpture section and bypass
    having to navigate through collections>artistcollect>sculpture. THANKS FOR ANY HELP!