Jump to content
WebFlake
  • 0

collapsable box


Die Hard Gaming

Question

i have this box that is a announcement  how would i make it so that the user has a option to minimisze the box after they read it?

<if test="memberbox:|:$this->memberData['member_id']">

<div class="message unspecific">


		<h3>New Divisions, Getting Involved and More</h3>
		
		<p>*=*=*=*=*=*</p>
<p>&nbsp;</p>
<p><strong>DhW Newest Division: Minecraft, read more <a href="******/hq/topic/13-dhws-newest-division-minecraft/">HERE</a></strong></p>

<p>&nbsp;</p><p><strong>DhS Newest Divisions - Need for Speed, read more <a href="*****/hq/topic/14-dhs-newest-division-need-for-speed/">HERE</a></strong></p>

<p>&nbsp;</p>
<p>*=*=*=*=*=*</p>
<p>&nbsp;</p>
<p><strong>Vote DhG to Top 100 <a href="********/hq/topic/5-top-100-clans/">HERE</a></strong></p>
	</div>

	</div>
</if>
Edited by Die Hard Gaming
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Replace your code with this:

<if test="memberbox:|:$this->memberData['member_id']">
<script type="text/javascript">

    jQuery.noConflict();
    jQuery(document).ready(function($){
        $('#hide').click(function() {
            $('#msg').toggle(500);             // Replace 500 with the speed you want to use
        });
    });

</script>

<div class="message unspecific">


    <h3>New Divisions, Getting Involved and More <span class="right clickable" id="hide">Toggle Message</span></h3>
        
    <div id="msg">

        <p>*=*=*=*=*=*</p>
        <p>&nbsp;</p>
        <p><strong>DhW Newest Division: Minecraft, read more <a href="#">HERE</a></strong></p>

        <p>&nbsp;</p><p><strong>DhS Newest Divisions - Need for Speed, read more <a href="#">HERE</a></strong></p>

        <p>&nbsp;</p>
        <p>*=*=*=*=*=*</p>
        <p>&nbsp;</p>
        <p><strong>Vote DhG to Top 100 <a href="#">HERE</a></strong></p>

    </div>

</div>
</if>

 

On the right side, there will be text that says "Toggle Message", and that's where you'll click to hide the message.

Note: The message will appear unhidden every time you refresh the page with this code. You'll have to add some more code to make it stay minimized.

Need some IPB, MyBB, or HTML/CSS work done? Check out my thread!
:smiley:

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...