1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML Newbie with Menu problem

Discussion in 'Web Development' started by Pachin, Dec 17, 2010.

  1. Pachin

    Pachin New Member

    Have this problem, I got the architecture2 template and I don't know how to use the menu, for example when clic on one of the tabs want to see on the right the linked page for example Service.html. Sorry for my poor english I'm from southamerica:). I use dreamweaver

    [​IMG]
     
  2. jcy

    jcy New Member

    I would like help with this also please.
     
  3. jd132

    jd132 VIP Member

    you need to create service.html and then place the link on the left hand side menu

    or u can also share the html so we can have a look and give u better solution :)
     
  4. jcy

    jcy New Member

    well here's the link to Architecture2. All those links on the upper left (Home, Recent Projects, Services, Clients, Solutions, Contact us) seem like they would just point to a new .html page.

    It would be nice if instead, that whole section that says "Welcome to our site" and "Company profile" below it would just go away and the content for "Recent Projects" or "services" or "Contact us" would show up in its place. Hope that makes sense.

    Thanks,

    jcy
     
  5. I think you must create a page for section you want to link to. Let's say if you want to move the content for "Recent Projects",you must create a page first because I can't see any page on it yet. Then you can delete and replace below Compnay Profile section with the new one. To link to the page that you have created, use the a href tag.
     
  6. navyfalcon

    navyfalcon Well-Known Member Verified Member

    On your website template source code:
    menu:
    <ul>
    <li class="important"><a href="http://www.freewebsitetemplates.com">Home</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Recent Projects</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Services</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Clients</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Solutions</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Contact us</a></li>
    </ul> </div>

    Replace this line:
    Free Website Templates
    in the menu with the address of the page "Recent Projects"
    then when you click on the menu Recent Projects it will go to that page
    <li><a href="http://www.The web address for Recent Projects">Recent Projects</a></li>
    Do the same with the other menu items
    -
    hope this helps
    falcon