Skip to content

Commit 85b1a51

Browse files
committed
Fixing section titles in docs
1 parent cb73116 commit 85b1a51

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/RadioButtonGroup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The `RadioButtonGroup` widget renders a list of radio toggle buttons in the form of bootstrap button group. See the [documentation](http://getbootstrap.com/components/#btn-groups) for more styling information.
44

5-
####Basic usage with default settings:
5+
#### Basic usage with default settings:
66
~~~
77
use webtoolsnz\widgets\RadioButtonGroup;
88
@@ -13,7 +13,7 @@ $form->field($model, 'status_id')->widget(RadioButtonGroup::class, [
1313
![screenshot](/docs/images/radio-button-group1.png?raw=true)
1414

1515

16-
####Customised active state (blue) and increased size:
16+
#### Customised active state (blue) and increased size:
1717
~~~
1818
use webtoolsnz\widgets\RadioButtonGroup;
1919
@@ -27,7 +27,7 @@ $form->field($model, 'status_id')->widget(RadioButtonGroup::class, [
2727
~~~
2828
![screenshot](/docs/images/radio-button-group2.png?raw=true)
2929

30-
####Customised label states based on value:
30+
#### Customised label states based on value:
3131
Green for yes, red for no, orange for maybe.
3232
~~~
3333
use webtoolsnz\widgets\RadioButtonGroup;
@@ -45,7 +45,7 @@ $form->field($model, 'status_id')->widget(RadioButtonGroup::class, [
4545
![screenshot](/docs/images/radio-button-group3.png?raw=true)
4646

4747

48-
####Advanced itemOptions Example
48+
#### Advanced itemOptions Example
4949
This advanced example shows how to:
5050
- Control the visibility of other elements on the page using the `showElements` and `hideElements` options.
5151
- Disable specific buttons using the `disabled` option.

0 commit comments

Comments
 (0)