diff --git a/dev-docs/bidders/improvedigital.md b/dev-docs/bidders/improvedigital.md
index 893e98b235..b4bbd09431 100644
--- a/dev-docs/bidders/improvedigital.md
+++ b/dev-docs/bidders/improvedigital.md
@@ -31,7 +31,6 @@ sidebarType: 1
| `bidFloor` | optional | Bid floor price | `0.01` | `float` |
| `bidFloorCur` | optional | Bid floor price currency. Supported values: USD (default), EUR, GBP, AUD, DKK, SEK, CZK, CHF, NOK | `'USD'` | `string` |
| `extend` | optional | See the [Extend mode section](#improvedigital-extend) | `true` | `boolean` |
-| `rendererConfig` | optional | Configuration object for JS renderer of the RAZR creatives. Provided by Improve Digital. | `{ key1: value1 }` | `object` |
### Configuration
@@ -47,22 +46,6 @@ pbjs.setConfig({
});
```
-
-
-#### Renderer Config
-
-Global configuration for the special creative format renderer. Please use [rendererConfig bid param](#improvedigital-params) for ad slot specific configuration.
-
-```javascript
-pbjs.setConfig({
- improvedigital: {
- rendererConfig: {
- // Global config object provided by Improve Digital
- }
- }
-});
-```
-
#### Extend Mode
@@ -81,6 +64,21 @@ pbjs.setConfig({
});
```
+
+
+#### MultiBid
+
+Improve Digital supports Prebid's MultiBid feature. More on enabling MultiBid can be found here: [MultiBid](https://docs.prebid.org/dev-docs/modules/multibid.html). An example of how to enable MultiBid for Improve Digital:
+
+```javascript
+pbjs.setConfig({
+ multibid: [{
+ bidder: "improvedigital",
+ maxBids: 3,
+ }]
+});
+```
+
### Examples