CSS help in nav please
Posted: Wed Sep 24, 2008 2:20 pm
Hi i'm running 1.4.1
I would like to have a graphic sat underneath the navigation at the bottom of the navigation bar but i don't know how to get it to sit there.
As you can see here
http://www.rjlewis.co.uk/index.php?page=projects
Could anybody help me with this please?
Here is the template code
Again Thanks.
I would like to have a graphic sat underneath the navigation at the bottom of the navigation bar but i don't know how to get it to sit there.
As you can see here
http://www.rjlewis.co.uk/index.php?page=projects
Could anybody help me with this please?
Here is the template code
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>{sitename} - {title}</title>
{metadata}
{stylesheet}
{cms_selflink dir="start" rellink=1}
{cms_selflink dir="prev" rellink=1}
{cms_selflink dir="next" rellink=1}
{literal}
<__script__ type="text/JavaScript">
<!--
//pass min and max -measured against window width
function P7_MinMaxW(a,b){
var nw="auto",w=document.documentElement.clientWidth;
if(w>=b){nw=b+"px";}if(w<=a){nw=a+"px";}return nw;
}
//-->
</__script>
<!--[if lte IE 6]>
<style type="text/css">
#pagewrapper {width:expression(P7_MinMaxW(720,950));}
#container {height: 1%;}
</style>
<![endif]-->
{/literal}
</head>
</__body>
<div id="pagewrapper">
<ul class="accessibility">
<li>{anchor anchor='menu_vert' title='Skip to navigation' accesskey='n' text='Skip to navigation'}</li>
<li>{anchor anchor='main' title='Skip to content' accesskey='s' text='Skip to content'}</li>
</ul>
<div id="header">
<h1>{cms_selflink dir="start" text="$sitename"}</h1>
</div>
<div id="menu_horiz">
<h2 class="accessibility">Navigation</h2>
{menu template='simple_navigation.tpl' number_of_levels='1'}
</div>
<div id="content">
<div id="sidebar">
<div id="menu_vert">
<h2 class="accessibility">Sub Navigation</h2>
<ul><li>{menu template='simple_navigation.tpl' start_level='2' collapse='2'}</li></ul>
</div>
<div align="center" ><img src="/uploads/iso.gif" alt="ISO CERT" width="200" height="85" />
</div>
</div>
<div id="main">
{content}
</div>
</div>
</div>
<__body>
</__html>