Hi Folks,

Hope you are well. I'm having trouble with the following tutorial and i'm fairly new to CSS

http://www.dynamicdrive.com/style/cs...ock-menu/P100/

I have the tutorial all setup and running at www. add .ie and it is fine but i need the menu to expand at this page for example where i have google adsense added http://www. add .ie/dogs-b289_0-en.html

Is there a way to auto expand the top menu when the pages resize horizontally.

Below i have copied the code that i have used

Thanks for your help,
Sully


<<<<------Start of CSS File


.solidblockmenu{

margin: 0;
padding: 0;
float: left;
font: bold 13px Arial;
width: auto;
border: 0px solid #625e00;
border-width: 0px 0;
background: transparent url(blockdefault.gif) center center repeat-x;
}

.solidblockmenu li{
display: inline;
}

.solidblockmenu li a{
float: left;
color: white;
padding: 5px 11px;
text-decoration: none;
border-right: 1px solid white;
}
.solidblockmenu a.left{
float: left;
color: white;
padding: 5px 11px ;
text-decoration: none;
border-right: 1px solid white;
background:url(blockdefault_left.gif) top left no-repeat;
}

.solidblockmenu a.right{
float: left;
color: white;
padding: 5px 11px 5px 11px;
text-decoration: none;
border-right: 0px solid white;
background:url(blockdefault_right.gif) top right no-repeat;
}

.solidblockmenu li a:visited{
color: white;
}

#blockmenu a:hover.left{background: transparent url(blockactive_left.gif) top left no-repeat;}
#blockmenu a:hover.right{background: transparent url(blockactive_right.gif) top right no-repeat;}

#blockmenu a#current{background: transparent url(blockactive_right.gif) top right no-repeat;}



.solidblockmenu li a:hover, .solidblockmenu li .current{
color: white;
background: transparent url(blockactive.gif) center center repeat-x;
}



<<<<------End of CSS File


<<<<------HTML File (Menu)


<table border="0" width="1024" height="12" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><div id="colortab" class="ddcolortabs">

<div id="blockmenu" >
<ul class="solidblockmenu">
<li ><a class="left" href="http://www.add.ie">Home</a></li>
<li><a href="http://www.add.ie/modules.php?mod=Regions">Local Ads</a></li>
<li><a href="index.php?page=search&cid=">Search</a></li>
<li><a href="index.php?page=add&cid=##cid##" class="current">Post a Free Ad Now</a></li>
<li><a href="index.php?page=top&pg=new">New Ads</a></li>
<li><a href="index.php?page=featured">Featured Ads</a></li>
<li><a href="http://www.add.ie/pg-foreignproperty.html">Property Overseas</a></li>
<li><a href="index.php?page=top&pg=hit">What's Top</a></li>
<li><a href="http://www.add.ie/pg-rss.html">RSS Feeds</a></li>
<li><a href="http://www.add.ie/blog">News</a></li>
<li><a class="right" href="modules.php?mod=Faq">FAQ / Help</a></li>
</ul>
</div>
</td>
</tr>
</table>

<<<<------End of HTML File (Menu)