HI friends...

i m making website which has menu bar and several pages...
i want to fix menu bar on all pages because menu bar is same for all the pages..
how to do it any suggetion?

Regards..

Recommended Answers

All 3 Replies

Member Avatar for diafol

Use an include file if using php.
Place just the menu into a menu.php file and then in your maqin pages, include it where appropriate, e.g.

<div id="banner">
    <img src="..." ... />
</div>
<div id = "nav">
    <?php include 'includes/menu.php';?>
</div>

diafol if i m using ajax as well so what should i do?

Member Avatar for diafol

In what sense? Do your ajax scripts affect the nav? You need to provide more info if you need an answer to that question, for example, include your nav code and any js scripts that make calls / change it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.