Hi all, im trying to use SSI to do the following:
I want to store, and be able to udate links for a navigation bar, that will be used on all my webpages at the same time.
Im not however sure how to do this, in my main index.shtml I have:
In nav_bar.php I have:
In my Style.css I have:
Can anyone help me solve this please
? Bit new to website making!
I want to store, and be able to udate links for a navigation bar, that will be used on all my webpages at the same time.
Im not however sure how to do this, in my main index.shtml I have:
Code:
<div id="navbar"><?php include("/assets/library/global/nav_bar.php"); ?></div>
In nav_bar.php I have:
Code:
<p>test</p>
<p><a href="www.google.co.uk"><Link</a></p>
In my Style.css I have:
Code:
div#navbar {
font: 100% Verdana, Arial, Helvetica, sans-serif;
width:auto;
height:28px;
text-align: center;
background-color: #C0C0C0;
background-image: url(../images/global/nav_bar.gif);
overflow: inherit;
}
Can anyone help me solve this please
