hey guys, so I would like to make my background image click-able. What is the easiest way to make this happen?
thanks in advance for your help...
thanks in advance for your help...
vBulletin 4.2.5 is end of life and will not be receiving any future development. Warning: vBulletin 4.2.5 is not compatible with PHP 7.2.0 or higher.
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
<script type="text/javascript"> function clickTrack() { window.open("http://yourlink","_blank"); } </script>
/* This is the logo link clickable area */ #logo-zone { position: absolute; top: 0; left: 0; z-index:-1; height: 792px; width: 100%; background-color: transparent; }
<a id="logo-zone" onclick="clickTrack();"></a>
body { background: url(ima
Comment