Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS how to make something into a button Reply To: how to make something into a button

#237696
koenigsegg1
Participant

SVG stands for Scalable Vector Graphics (Wikipedia). W3Schools has some good info on how to start using SVG.

Anyway, to answer your original question you need to wrap .frame in an anchor tag a with a href value of the page your wanting to go to.

<a href="http://pipanel.co.uk/test.html">
  <div class="frame">
      <div class="hex-outer h1"></div>
      <div class="hex-outer h2"></div>
      <div class="hex-outer h3"></div>
      <div class="hex-inner h1"></div>
      <div class="hex-inner h2"></div>
      <div class="hex-inner h3"></div>
      <div class="label">+</div>
    </div>
</a>