No need for downloads - it's a simple code - given a class, and positioned on your profile.
For example.
%26lt;style%26gt;
{! open my custom div - I'll call it contactdiv !}
.contactdiv {width:200; height:30; }
.contactdiv {z-index:5; position: absolute; left:50%; top:400px; margin-left:-100px;}
.contactdiv {background-color: transparent;}
%26lt;/style%26gt;
%26lt;div class="contactdiv"%26gt;
YOUR CUSTOM CONTENT GOES HERE
%26lt;/div%26gt;
Adjust the properties to position it, size it up, etc. "z-index" will determine which layer the div will be, so if you put set that property to 1, it will override any other layers on your page. Margin-left and "top" will position the div where you want.
No comments:
Post a Comment