Vertical text menu

Hi cheers for acepting me to your forums, question I’m after a index page where when you visit a website your see a menu list going down with clickable links to other pages…ie: contact, portfolio, about etc like the image added. Thanks

Which part are you having a problem with? Have you started to code yet?
What is your familiarity with html, css, JavaScript?

Im ok with html not much css but what i was thinking is using a index.html and adding a vertical menu list inside the body content but I’m not sure what to add :thinking:

Typically people use a <ul> (unordered list) for menus with the anchor links nested in the <li>

<ul class="menu">
    <li><a href="/contact">Contact</a></li>
    Etc...

Making it vertical is simple enough, as that is the default appearance of a list. Though you probably want it to differ from the default list appearance. The specific CSS you would use would depend on the specific design you choose.
In your image you ave quite large text aligned to the centre. Are the little numbers part of the design you want?

Done it well nearly

http://www.kinsey-agency.uk/index3.html

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.