The problem is the graphics are small. You can however go into the code and edit ti so each graphic is shown full screen. The following code is what works for me to make images full screen. It's really simple.
CSS:
Code:
body {
widows: 1;
orphans: 1;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
text-align: justify;
}
img {
max-height: 100%;
max-width: 100%;
}
.cover {
text-align: center;
text-indent: 0;
height: 100%;
}
HTML:
Code:
<div class="cover">
<img alt="" class="cover" src="../Images/cover.jpg"/>
</div>
</body>
</html>
The text looks like this could be fixed layout. I won't know for sure unless you post some of the code.