Anyone know how I can make my header css into a clickable link in a phpbb board..... I want to make the header clickable, but the whole header is in the css and I don't use phpbb much at all: http://www.volkswagentalk.com/vw/
I know I can do it in the css file...... /* Header and Logo */ .logo-row { background: url(images/logo_mid.gif) no-repeat center center; height: 115px; } #buttonstable td { background: url(images/buttons.gif) top left repeat-x; height: 25px; } #header-buttons { font-size: 11px; color: #A1AED0; padding-top: 5px; }
That is what the code above is...... How do I edit the above code to make the image images/logo_mid.gif clickable?
Forget the CSS, just go into the overall_header.tpl and replace: <tr> <td align="center" valign="top"><div class="logo-row"><div class="logo-row2"><!-- replace this spacer.gif with ad or logo --><img src="templates/Getaway/images/spacer.gif" width="1" height="71" alt="" /><!-- end of replacement --></div></div></td> </tr> Code (markup): with: <tr> <td align="center" valign="top"><a href="/"><img src="templates/Getaway/images/logo_mid.gif" width="100%" /></a></td> </tr> Code (markup): should do the trick...