Shadow Text box
Your Text...
Tutorial
- Copy code below (make sure you get all of it!)
- On your desired page in Edit view...
- Place your cursor on the page where you'd like the callout box to live
- Select Insert
- Select Embed
- Paste the code and select Submit
- Save the page - voila!
Tips
- To change the Shadow color, modify the background-color in line 1 of the code. (#cccccc)
- To change the background color of the text box, modify the background-color in line 2 of the code (#ffffff)
Code
<div style="margin: 50px 15% 50px 15%; background-color: #cccccc;">
<div style="position: relative; top: -20px; left: -20px; padding: 20px; background: #ffffff; border: 2px solid #cccccc;">
<!-- Place your content below --->
<p>Your Text...</p>
<!-- end content -->
</div>
</div>