Guides/Webform-Integration-Sub-Folder.md
... ...
@@ -422,8 +422,20 @@ Place the copied code between < hr / > and < footer >
422 422
</div>
423 423
424 424
```
425
+**c.** As in < Head >, to hide Izenda from the main page when Izenda is not reached, add the below code snippet at the end of < body >
425 426
426
-**c.** In order to launch Izenda, add a link to Izenda report list page in the < body > of Site.master as below
427
+```html
428
+
429
+ <script type="text/javascript">
430
+ $(document).ready(function HideHeader() {
431
+ if (window.location.href.indexOf('Izenda') === -1) {
432
+ document.getElementById('whiteHeader').style.display = 'none';
433
+ }
434
+ });
435
+ </script>
436
+```
437
+
438
+**d.** In order to launch Izenda, add a link to Izenda report list page in the < body > of Site.master as below
427 439
428 440
```html
429 441
<ul class="nav navbar-nav">
... ...
@@ -458,4 +470,4 @@ As we did in the previous step, use 'Find and Replace' tool again as below
458 470
459 471
![1](http://wiki.izenda.us/Guides/Webform-Integration-Sub-Folder/5.png)
460 472
461
-###Step 10. In all izenda .aspx pages update paths to izenda .ascx controls
473
+###Step 10. Copy rs.aspx and rs.aspx.cs from webform kit to website root folder