Hi,
In my html I have a menu and a search box which should display a search image.
When I look in the source code - the image is there and if I browse to the image url - it displays, BUT it does not display on my page !!!
This is the page url:
This is the url for the search box image:
If you look at the source code for the page, you can see this just a few lines after the <body> starts
The image address is there - but it doesn't show up on the page.
Can any one figure out why ?
I am not sure but looking at the css includes - am I missing a css file maybe ?
Obviously this is a phpbb implementation - but the html basic principles apply everywhere.
Thanks for any help
In my html I have a menu and a search box which should display a search image.
When I look in the source code - the image is there and if I browse to the image url - it displays, BUT it does not display on my page !!!
This is the page url:
This is the url for the search box image:
If you look at the source code for the page, you can see this just a few lines after the <body> starts
Code:
<div id="menu" style="clear:both;margin-top: -3px;;background: url('./styles/prosilver_se/theme/images/menu/blue/menu_bg.gif') repeat-x;">
<div class="inner">
<span class="menu_corner-left" style="background: url('./styles/prosilver_se/theme/images/menu/blue/menu_corner.gif') no-repeat;"></span>
<span class="menu_corner-right" style="background: url('./styles/prosilver_se/theme/images/menu/blue/menu_corner_right.gif') no-repeat;"></span>
<div id="top-search" style="float: right;background: transparent url('./styles/prosilver_se/theme/images/menu/blue/menu_search.gif') no-repeat scroll 0 0;">
<form action="./search.php" method="post" id="search">
<fieldset>
<input name="keywords" id="keywords" type="text" maxlength="128" title="Search for keywords" class="menu_search" value="Search…" onclick="if(this.value=='Search…')this.value='';" onblur="if(this.value=='')this.value='Search…';" />
</fieldset>
</form>
</div>
Can any one figure out why ?
I am not sure but looking at the css includes - am I missing a css file maybe ?
Obviously this is a phpbb implementation - but the html basic principles apply everywhere.
Thanks for any help
Comment