Draggable Elements

Example:

Click to Drag the Box Around

 

Tips on using the Code Below:

1: To change the text color, modify the "color:" in line 3 of the code. (#ffffff)

2. To change the background color of the text box, modify the background-color in line 3 of the code.(#68838b)

(Color Code Chart

View in a new window)

Code

Draggable Elements

<div style="width: 100%; height: 400px;">
<div class="enhanceable_content draggable">
<div style="text-align: center; background-color: #68838b; color: #ffffff; width: 300px; height: 50px;">
<p style="padding: 15px;">Click to Drag the Box Around</p>
</div>
</div>
</div>

Back