Nell'Html ho
codice:
<div id="content">
<div id="header">
<div id="menu">
<ul class="menu">
<li class="aaa">
<a class="" href="index.php?id=3" title="AAA">
<span class="imgReplace">AAA</span>
</a>
<li class="bbb">
<a class="" href="index.php?id=2" title="BBB">
<span class="imgReplace">BBBB</span>
</a>
<li class="ccc">
<a href="index.php?id=4" title="CCC">
<span class="imgReplace">CCC</span>
</a>
[/list]
<ul class="menu_extra">
[*]
<a href="index.php?id=1" title="Home">
<span class="imgReplace">Home</span>
</a>
[*]
<a href="index.php?id=5" title="PDF">
<span class="imgReplace">PDF</span>
</a>
[/list]
<form id="search" method="post" >
....
</fieldset>
</form>
</div>
</div>
</div>
nel CSS
codice:
p, blockquote, pre, ol, dl, ul, form {line-height:1.5}
:focus { outline:none; }
.imgReplace { display:block; width:0; height:0; line-height:0; overflow:hidden; clip:rect(0,0,0,0); }
.clear { clear:both; display:block; font-size:0; height:0; line-height:0; overflow:hidden; }
#content { width:975px; margin:auto; padding:0 0 0; display:table; z-index:1; }
#content #header #menu { float:left; clear:both; width:922px; height:48px; background: url(../images/menu.png) no-repeat; margin-top:10px; position:relative; left:0px;}
#content #header #menu ul,
#content #header #menu ul li,
#content #header #menu form { float:left; }
#content #header #menu .menu { width:390px; height:50px; margin:0;}
#content #header #menu .menu li { padding:5px 0 0;}
#content #header #menu .menu li a { display:block; height:40px; background:url(../images/menu_over.png) no-repeat; }
#content #header #menu .menu li.aaa a { width:121px; background-position:0 -40px; margin-right:9px; margin-left:7px;}
#content #header #menu .menu li.aaa a:hover,
#content #header #menu .menu li.aaa a.active { background-position:0 0; }
#content #header #menu .menu li.bbb a { width:152px; background-position:-122px -40px; margin-right:4px; margin-left:7px;}
#content #header #menu .menu li.bbb a:hover,
#content #header #menu .menu li.bbb a.active { background-position:-122px 0; }
#content #header #menu .menu li.ccc a { width:78px; background-position:-275px -40px; margin-left:7px;}
#content #header #menu .menu li.ccc a:hover,
#content #header #menu .menu li.ccc a.active { background-position:-275px 0; }
#content #header #menu form fieldset { margin:0; border:0;}
#content #header #menu form input { border:0 none; color:#FFFFFF; font-size:18px; left:540px; padding:11px 3px; position:absolute; width:358px; background:none; display:block; top:3px;}
#content #header #menu form button { background:none; border:0; cursor:pointer; display:block; height:37px; padding:0; position:absolute; right:6px; top:6px; width:38px;}
il problema è nei due pulsanti PDF ed HOME, vorrei renderli cliccabili
Grazie