Since I've played with the info page and tinkered with the CSS it's likely I've created the problem and will need to "fix" my mess before proceeding with 127 unless something else is going on.
Bingo. The underlying code for the info page is completely different. CSS selectors have changed. The info page is now shown in a modal window. The navigation is different (a modal window never leaves the index page, so you just close it to return to the index page).
But with a few minutes tinkering, I can get you close to where you probably want to be.
Info Page > Design: set the maximum width to 300px. De-select the box border. Remove the logo image.
Info Page > Text: blank out the
Title section. To the
Body section, add a new first line:
<img src='res/logo.png' width='140' alt=''>
Now head for
Code > CSS. Replace the existing first three lines with this, to add the gradient background to the info page popup
html, .ja-ipbody {
background: linear-gradient(#0000a0,#000000) no-repeat fixed;
}
It will end up looking like the attached screenshot (with my own content on the index page behind it, of course). I think you'll agree that it's better than having an entire 1920x1080 web page used to show material that's less than 300px wide!