Resizable Elements

Example:

Click the corner to make this box bigger or smaller

 

 

Tips on using the Code Below:

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

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

(Color Code Chart

View in a new window)

Code

Resizable Elements

<div style="width: 100%; height: 400px;">
<div class="enhanceable_content resizable" style="text-align: center; background-color: #68838b; color: #ffffff; width: 400px; height: 50px;">
<p style="padding: 15px;">Click the corner to make this box bigger or smaller</p>
</div>
</div>

Back