Popup Links
If you don't already have a popup ask, install one by following the directions here.
To add another popup, paste the chunk of coding you posted below </body> and change the div id="02" to div id="08", and create a link in your header links that says:
<a href="#?w=500" rel="08" class="poplight">Links</a>
Okay, so now you have your links popup but you don't have any content.Β
If you want your links in boxes, add this code under <style>
.poplinktitle{ font-size: 24px;}
.poplinks a{ margin: 10px; margin-top: 30px; border: 1px solid #000; /*change your border */ border-radius: 25px 0px 25px 0px; /*border radius*/ background-image:url(BACKGROUND IMAGE URL); /*change your background image*/ padding: 10px; /*change how big they are around the word*/
font-size: 18px; -webkit-transition: 0.6s ease-in; -moz-transition: 0.6s ease-in; transition: 0.6s ease-in; /*how fast the hover transition is*/ }
.poplinks a:hover{ border-radius: 0px 25px 0px 25px; /*the border hover effect*/ -webkit-transition: 0.6s ease-in; -moz-transition: 0.6s ease-in; transition: 0.6s ease-in;}
In the content part of the popup (under </body>, under <div id="08" class="popup_block">), paste this code:
<center><div class="poplinktitle">links</div></center>
<br><center><br>
<div class="poplinks"> <a href="/">ONE</a> <a href="/"> TWO</a> <a href="/">THREE</a><br><br><br> <a href="/">FOUR</a> <a href="/">FIVE</a> <a href="/">SIX</a></div></center><br>
IF YOU WANT MORE THAN SIX LINKS, READ ON:
Every three links, add a <br><br><br>Β
Add the next link code in the series
<a href="/">LINK TITLE</a>
right after the </a> of the sixth link.
Inspired by tutorial-baby xx
Any questions, just ask :)










