de8a9621d651459fb71e53d63c59384860c7568f
Guides/MVC-Integration.md
| ... | ... | @@ -443,7 +443,6 @@ After Step#11, the Sample_MVCApp should build and work without a problem. To see |
| 443 | 443 | **b.** Find below two lines in the body of the html and edit the source image directory, alt, and the link address for top-right image |
| 444 | 444 | |
| 445 | 445 | ```html |
| 446 | - |
|
| 447 | 446 | <img src="~/Resources/FromDLL/Resources/ModernImages/bi-logo.png" alt="Business intelligence" /> //top-left image |
| 448 | 447 | |
| 449 | 448 | <a href="http://izenda.com" style="position: relative; top: 4px;"><img class="right-logo" src="~/Resources/FromDLL/Resources/ModernImages/IzendaNewLogoBlue.png" alt="Izenda Reports" /></a> //top-right image |
| ... | ... | @@ -455,14 +454,11 @@ After Step#11, the Sample_MVCApp should build and work without a problem. To see |
| 455 | 454 | In this guide, two images, Logo.png and batman.png, were put in the project folder, /Sample_MVCApp, and the above two lines were edited as below |
| 456 | 455 | |
| 457 | 456 | ```html |
| 458 | - |
|
| 459 | 457 | <img src="~/Logo.png" alt="Batmans intelligence" /> //top-left image |
| 460 | 458 | |
| 461 | 459 | <a href="http://batman.com" style="position: relative; top: 4px;"><img class="right-logo" src="~/batman.png" alt="Batman.Com" /></a> //top-right image |
| 462 | - |
|
| 463 | 460 | ``` |
| 464 | 461 | |
| 465 | - |
|
| 466 | - |
|
| 467 | - |
|
| 462 | +The result should look as below |
|
| 463 | + |
|
| 468 | 464 |