Website Tutorials
Recipes
Entertainment Reviews
Home Remedies
Game Codes and Cheats
VampireFreaks Website Tutorials | Submited Jan 17, 2008
Okay, Okay.
Here is teh code to make an Anchor box.
An anchor box is one of those anoying boxes where you
click links on the side and the page stays the same except for the content in the box.
You can customize everything from the border to the scroll bar.
And the words also the size and number of links, the title of links what have you.
<style type="text/css">
.container {
width: 400px; height: 300px;
overflow: auto; overflow-y: hidden;
border: 2px solid #ff0099;
}
.section { height: 200px; overflow: auto; }
</style>
<table width="350px"><tr><td>
<div style="overflow: Hiden; width: 100px; height: 300px; border: 2px solid #ff0099;"> <center>
<b>NAVIGATION <b>
<br><BR><BR>
<br><a href="#profile"> About Meh </a>
<br><a href="#loves"> Loves </a>
<br><a href="#Hates"> Hates </a>
<br><a href="#music"> Music </a>
</div>
</td><td>
<div class="container">
<a name="profile"></a>
<div class="section">
<br><br>ABOUT TEXT GOES HERE !!!
</div>
<a name="loves"></a>
<div class="section">
<br><br>LLOVERS TEXT GOES HERE !!!
</div>
<a name="Hates"></a>
<div class="section">
<br><br>HATES TEXT GOES HERE !!
</div>
<a name="music"></a>
<div class="section">
<br><br>MUSIC TEXT GOES HERE !!
</div>
</div>
</td></tr></table>
1