I'm not really good with CSS and html when the layout is complicated. I can quick fix things, but I have no real knowledge.
I'm trying to adapt this demo : http://demo.marcofolio.net/bgimg_slideshow/ for my website.
Problem: the logo is a background image for a div and not a link.
I'm not good enough to see how i could change it without defacing the layout.
Could you help me either by providing the fix (if it doesn't take you more than 5 minutes) or by giving me hints or links so i could figure it out myself?
Edit : here's a jsfiddle with minimum code
And here are the files :
html :
<div id="header">
<div id="headerimgs">
<div id="headerimg1" class="headerimg"></div>
<div id="headerimg2" class="headerimg"></div>
</div>
<div id="nav-outer">
<div id="navigation">
<div id="menu">
<ul>
<li><a href="http://www.marcofolio.net/">Marcofolio</a></li>
<li><a href="http://www.twitter.com/marcofolio">Twitter</a></li>
<li><a href="http://feeds2.feedburner.com/marcofolio">RSS</a></li>
<li><a href="http://jquery.com/">jQuery</a></li>
<li><a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a></li>
<li><a href="http://buysellads.com/buy/detail/956">Advertisements</a></li>
</ul>
</div>
</div>
</div>
</div>
Css :
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{margin:0; padding:0;}
#header { height:600px; }
.headerimg { background-position: center top; background-repeat: no-repeat; width:100%; height:600px; position:absolute; }
#nav-outer { height:110px; padding-top:11px; position:relative; top:24px; background-image:url("http://demo.marcofolio.net/bgimg_slideshow/images/headerbg.png"); }
#navigation { height:100px; width:960px; margin:0 auto; background-image:url("http://demo.marcofolio.net/bgimg_slideshow/images/logo.png"); background-position:top left; background-repeat:no-repeat; }
#menu { position:relative; top:85px; }
#menu ul { list-style:none; }
#menu ul li { display:inline; font-variant:small-caps; font-size:12px; }
#menu ul li a { color:white; text-decoration:none; font-weight:bold; padding-right:20px; }
#menu ul li a:hover { text-decoration:underline; }