Hi All,
i am very new to this and not too sure how to approach this problem. I have created a site with header, footer and a left menu. the site has different folders and I have managed to get the links in the menu to work across all folders. My only problem is the logo in the header and the image in the LHS menu. they keep breaking when I access the pages under the different folders..
I noticed that my virtual directory is disabled -
http://www.womenxtra.co.uk/manor-farm/version.php
what do I need to do for the images in order for them to show in the sub-folders?
the site is:
http://www.womenxtra.co.uk/manor-farm/
At the moment, i resolved the issue with the menu links to work across the site using these:
<?php $root = '../'; ?>
<?php include ("../left_menu.php"); ?>
for some reason they are not doing the same effect with the images...
below is my header file:
<TABLE style="BORDER-BOTTOM: #6a94cc 1px solid" cellSpacing="0" cellPadding="0" width="100%" align="center" bgColor="#ffffff">
<TBODY>
<TR bgColor="#ffffff">
<TD align="left">
<a href="<?php echo $root ?>index.php">
[img]images/LBHLogo.gif[/img]</a>
<a href="<?php echo $root ?>index.php">
[img]images/lbh_title.gif[/img]
</a>
</TD>
<TD class="num" align="right"></TD></TR>
<TR>
<TD class="top" align="right" colSpan="2">
Home
About Us
Contact Us
Site Map
</TD>
</TR>
</TBODY></TABLE>
thank you in advance.
Tala