Jump to content

[SOLVED] getting rid of an area in ajex spry


runnerjp

Recommended Posts

dntwant.jpg

 

here is my current code

 

my ajex script

 

<script src="../../css/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="../../css/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
      <link href="http://www.runningprofiles.com/css/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
      <div id="CollapsiblePanel1" class="CollapsiblePanel">
  <div class="CollapsiblePanelTab" tabindex="0">Edit</div>
  <div class="CollapsiblePanelContent">
<form name='input' action='index.php?page=forum&forum=<? echo $forum ?>' method='post'>

Title:
  <input class='input' name='title' type='text' value='<? echo $getthreads3[title];?>' />
  <br/>
   
  <input type='checkbox' name='forumlock' <?php echo  $check ?>> 
  Lock a Room<br/>
      <input type='checkbox' name='important' <?php echo  $checkimpor ?>> 
  Important<br/>
      <input type="hidden" name="id" value="<?php echo $getthreads3[postid] ?>">
<input type='submit' name='edit' value='edit'/>
</form>	  <?
}
?></div>
</div>


      <script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1", {contentIsOpen:false});
//-->
      </script>

 

and my css

 

@charset "UTF-8";

.CollapsiblePanel {
margin: 0px;
padding: 0px;
border-left: solid 1px #CCC;
border-right: solid 1px #999;
border-top: solid 1px #999;
border-bottom: solid 1px #CCC;
}


.CollapsiblePanelTab {
font: bold 0.7em sans-serif;
background-color: #DDD;
border-bottom: solid 1px #CCC;
margin: 0px;
padding: 2px;
cursor: pointer;
-moz-user-select: none;
-khtml-user-select: none;
width: 20px;

}

.CollapsiblePanelContent {
margin: 0px;
padding: 0px;

}

.CollapsiblePanelTab a {
color: black;
text-decoration: none;

}


.CollapsiblePanelOpen .CollapsiblePanelTab {
background-color: #EEE;

}

.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
background-color: #CCC;

}


.CollapsiblePanelFocused .CollapsiblePanelTab {
background-color: #3399FF;

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.