the Rift
» Expandable Divs in Profile Code - Printable Version

+- the Rift (http://riftrpg.net)
+-- Forum: Out of Character (http://riftrpg.net/forumdisplay.php?fid=11)
+--- Forum: Player Resources (http://riftrpg.net/forumdisplay.php?fid=15)
+---- Forum: Resources (http://riftrpg.net/forumdisplay.php?fid=18)
+---- Thread: » Expandable Divs in Profile Code (/showthread.php?tid=368)



» Expandable Divs in Profile Code - Smitty - 07-23-2017

This is the code for divs that collapse/expand for profiles.

Code:
<div class="header">HEADER HERE</div>
<div class="slidecontent" style="display: none;">
TEXT HERE. This one will start 'closed,' or with none of this text showing. Clicking on the "header here" text will reveal it.
</div>


Code:
<div class="header">HEADER HERE</div>
<div class="slidecontent">
TEXT HERE. This one will start 'open,' or with this text showing. Clicking on the "header here" text will hide it.
</div>



RE: » Expandable Divs in Profile Code - LovellaTorendo - 08-18-2017

Thanks for sharing this, it makes things look so tidy. I am using it for everything now.