Add a background image to this part of my template?

h@ck3r

New Member
I want to add the bottom part of my image as a background in this DIV:

HTML:
<div id="xxx1"> 
<ul>
<table id="navstyle" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
    <tr align="center">    </tr>
    </table>
<!-- Search -->
<form action="search.php?do=process" method="post" name="vbform" id="searchform" style="display:block; margin:5px"> 
  <div align="right">  <a href="search.php" class="style1">Advanced search</a>
  <input type="hidden" name="s" value="" /> 
  <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" /> 
  <input type="hidden" name="do" value="process" /> 
  <input type="hidden" name="searchthreadid" value="" />
  <input type="text" class="bginput" name="query" size="28" tabindex="1001" value="Type, then hit 'Enter' to search" onFocus="value='';"/> 
  </div>
</form>
<!-- /Advanced search -->
</ul> 
</div>

Here's the image:

solidologobottom40pxud4.gif


I can't work out how to do it. Do I add it as a background within this template, or do I do it somehow via my CSS Stylesheet?

Please can somebody help me?

Here's my full 'Header' template:

HTML:
<!-- logo -->
<a name="top"></a>
<table width="80%" border="0" align="center" cellpadding="0" cellspacing="0" class="wrapper">
  <tr>
    <td class="headerwrap"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td class="logowrap" align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="images/solido/spacer.gif" alt="$vboptions[bbtitle]" width="750" height="129"></a></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td class="navwrap">
    </td>
  </tr>
  <tr>
    <td valign="top">
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output
<div id="xxx1"> 
<ul>
<table id="navstyle" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
    <tr align="center">    </tr>
    </table>
<!-- Search -->
<form action="search.php?do=process" method="post" name="vbform" id="searchform" style="display:block; margin:5px"> 
  <div align="right">  <a href="search.php" class="style1">Advanced search</a>
  <input type="hidden" name="s" value="" /> 
  <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" /> 
  <input type="hidden" name="do" value="process" /> 
  <input type="hidden" name="searchthreadid" value="" />
  <input type="text" class="bginput" name="query" size="28" tabindex="1001" value="Type, then hit 'Enter' to search" onFocus="value='';"/> 
  </div>
</form>
<!-- /Advanced search -->
</ul> 
</div>
<div id="header"> 
<ul>
<!-- Logout -->
<if condition="$show['member']"></if>
<if condition="$show['member']">
<li><a href="login.php?do=logout&logouthash=1234005584-e000684a9610c89c2bd2d5c1e0a7cace37a6828d">Log Out</a></li>
<else />
</if>
<!-- /Logout -->
<!-- Classifieds -->
    <if condition="$show['member']"></if>
<if condition="$show['member']">
<li><a href="sell-your-old-used-stuff/">Classifieds</a></li>
  <else />
</if>
<!-- /Classifieds -->
<if condition="$show['communitylink'] AND $show['popups']">
  <li><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> 
      <script type="text/javascript"> vbmenu_register("community"); </script>
  </li>
  <else />
  <if condition="$vboptions['enablememberlist']">
<!--  Imagehost -->
    <if condition="$show['member']"></if>
<if condition="$show['member']">
<li><a href="http://www.mywebsite.com/imagehost/" target="_blank">ImageHost</a></li>
      <else />
</if>
<!-- /Imagehost -->
<!-- Members -->
    <if condition="$show['member']"></if>
<if condition="$show['member']">
    <li><a href="memberlist.php$session[sessionurl_q]">Members</a></li>
      <else />
</if>
<!-- /Members -->
    <!-- Garage -->
    <if condition="$show['member']"></if>
<if condition="$show['member']">
<li><a href="vbgarage.php">Garage</a></li>
  <else />
</if>
<!-- /Garage -->
  </if>
  <if condition="$show['quick_links_groups']">
    <li><a href="group.php?$session[sessionurl]">Groups</a></li>
  </if>
</if>
<!-- Platinum -->
<if condition="$show['member']"></if>
<if condition="$show['member']">
<li><a href="payments.php">Membership</a></li>
  <else />
</if>
<!-- /Platinum -->
<!-- new posts -->
<if condition="$show['member']"></if>
<if condition="$show['member']">
  <li><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></li>
  <else />
</if>
<!-- /new posts -->
<!-- usercp -->
<if condition="$show['member']"></if>
<if condition="$show['member']">
  <li><a href="usercp.php">Settings</a></li>
  <else />
    <li><a href="register.php">Register</a></li>
</if>
<!-- /usercp -->
</ul> 
</div>
 
Back
Top