Jump to content

Search the Community

Showing results for tags 'web pages menu'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Job Boards
    • Jobs
  • Community Lounge and FAQ
    • Forum News
    • Open Forum
    • New Members Forum - Start Here!
  • Entrepreneurship, Business and Marketing
    • Social Media Marketing & Web Marketing
    • Entrepreneurship
    • Career Questions - Asked and Answered
  • StudioWeb
    • StudioWeb
    • StudioWeb News
    • StudioWeb Projects
  • Programming
    • Python
    • Javascript
    • PHP
  • Web Design
    • Beginners Web Design
    • HTML/XHTML
    • Dreamweaver
    • CSS
    • Advanced Web Design
    • Business of Web Design
    • Web Design News
  • Miscellaneous
    • Cybersecurity
    • Miscellaneous Software
    • Blogs and CMS
    • Web Accessibility
    • Peer-to-Peer Reviews
    • Website Templates
    • Web Design Jobs
    • Test Forum
  • Archives
    • Beginners Web Design
    • Course: The Complete Entrepreneur
    • Web Accessibility
    • Photoshop
    • CSS
    • Forum Rules and Etiquette
    • Flash
    • ASP
    • General Programming
    • Expression Web
    • Beginners Ruby
    • Killersites University
    • Actionscript

Categories

There are no results to display.

There are no results to display.

Product Groups

  • Business & Entrepreneur Courses

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website


LinkedIn


Facebook


Twitter


AIM


Yahoo


Other


Location


Interests

Found 1 result

  1. I am working on a responsive web template css & html. As I will be adding new web pages routinely, I would like to have an easy way to update the menu which is located at the top of every .html page. right now the menu on index.html looks like below <div class="collapse navbar-collapse navbar-collapse"> <ul class="nav navbar-nav navbar-right"> <li class="active"><a href="index.html">Home</a></li> <li class="dropdown"><a href="#" >About <b class="caret"></b></a> <!-- submenu-wrapper --> <div class="submenu-wrapper submenu-wrapper-topbottom"> <div class="submenu-inner submenu-inner-topbottom"> <ul class="dropdown-menu"> <li><a href="about-us.html">About Us</a></li> <li><a href="about-me.html">About Me</a></li> </ul> </div><!-- /.submenu-inner --> </div> <!-- /.submenu-wrapper --> </li> <li class="dropdown"><a href="#" >Blog <b class="caret"></b></a> <!-- submenu-wrapper --> <div class="submenu-wrapper submenu-wrapper-topbottom"> <div class="submenu-inner submenu-inner-topbottom"> <ul class="dropdown-menu"> <li><a href="blog.html">Blog Standard</a></li> <li><a href="blog-single.html">Blog Single</a></li> </ul> </div><!-- /.submenu-inner --> </div> <!-- /.submenu-wrapper --> </li> <li class="dropdown"><a href="#" >Portfolio <b class="caret"></b></a> <!-- submenu-wrapper --> <div class="submenu-wrapper submenu-wrapper-topbottom"> <div class="submenu-inner submenu-inner-topbottom"> <ul class="dropdown-menu"> <li><a href="portfolio-four.html">Portfolio Four Col</a></li> <li><a href="portfolio-three.html">Portfolio Three Col</a></li> <li><a href="portfolio-two.html">Portfolio Two Col</a></li> </ul> </div><!-- /.submenu-inner --> </div> <!-- /.submenu-wrapper --> </li> <li class="dropdown"><a href="#" >Pages <b class="caret"></b></a> <!-- submenu-wrapper --> <div class="submenu-wrapper submenu-wrapper-topbottom"> <div class="submenu-inner submenu-inner-topbottom"> <ul class="dropdown-menu"> <li><a href="job-page.html">Job Page</a></li> <li><a href="clients-page.html">Clients Page</a></li> <li><a href="faq.html">FAQ Page</a></li> <li><a href="typography.html">Typography</a></li> </ul> </div><!-- /.submenu-inner --> </div> <!-- /.submenu-wrapper --> </li> <li><a href="contact.html">Contact</a></li> </ul> </div><!-- /.navbar-collapse --> </div><!-- /.container --> </nav> I would like to have the above menu in one file and then update the file whenever I make a new web page, for example on the About section which has two web page pages if I wanted to include a third item (web page) <li><a href="about-me-again.html">About Me Again</a></li> the I would like to make one change that will update the menu on all of the web site's pages rather than updating 100 web site pages! I have seen a lot of old posts on this via Google searches - 7 years old or more - hoping forum users might have something new and effective that is super easy for a newbie to follow!
×
×
  • Create New...