Collapse-O-Matic Button Test

There are a couple of ways a button can be used as a collapse-o-matic trigger:

using a stylized div

Push me
this is the hidden content

shortcode:

[expand title="Push me" trigclass="noarrow my_button" targclass="my_content" tag="div"]this is the hidden content[/expand]

css:

.my_button {
background: #4B55E3;
color:  white;
padding:  5px;
width: 130px;
text-align: center;
}

.my_button.colomat-hover{
 background: #999;
text-decoration: none;
}

.my_content{
margin-left: 0;
}

Using a html button:

shortcode:

[expand title="Push me" trigclass="noarrow my_button" targclass="my_content" tag="button"]this is the hidden content[/expand]
this is the hidden content

5 Replies to “Collapse-O-Matic Button Test”

  1. Hi there,
    Is there a way to make the “button” disappear once it has been clicked? When I use the swaptitle attribute, the text is hidden, but the background color etc. remains.

    Thank you!

  2. The html button breaks the expand/collapse behavior when you use RETURN. Is there a solution for that? I have the same problem with my use of collapse-o-matic.

Comments are closed.