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..
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..
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?
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.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.