position of my lectora title on screen
June 2, 2010 12:00 AM
Dear Experts,
when I publish a Lectora title to html, I can select the horizontal position (left, centered). But my title always appears on top of the browser screen. How can I modify the vertical position of my title within the browser screen (not LMS)? Is it possible within Lectora or do I need external programming?
Thank you for help.
Jürgen Kiel (Frankfurt, Germany), Lectora Enterprise Edition vX 2a
Discussion (2)
This could be done with javascript, but an easier way would be this free extension for Lectora (disclaimer: I have not used it myself). It's from a company called Quizzicle:
http://quizzicle.com/warez/index.php?route=product/product&path=17&product_id=52
@benpitman 35737 wrote:
Lectora does not support centering the course vertically. There may be some HTML that does this but I do not know of it.
@honeycutt 61891 wrote:
This could be done with javascript, but an easier way would be this free extension for Lectora (disclaimer: I have not used it myself). It's from a company called Quizzicle:
http://quizzicle.com/warez/index.php?route=product/product&path=17&product_id=52
body, html {
background: #202020 url(images/blackbg.jpg) repeat-x top center;
overflow: hidden;
}
iframe {
border: 0px;
overflow: hidden;
}
#pageDIV {
position: absolute;
margin: auto 0px auto 0px;
overflow: hidden;
top: 0; left: 0; bottom: 0; right: 0;
}
CSS in an external web object
#pageDiv is forced to center of screen
I use iframe to remove the border (removes it from TOC menu)
Body overflow > (not reqired but removs scroll bars from browser, can use overflow-x, overflow-y or remove)
overflow:hidden > also contains animation within the pageDiv (no scroll bars or objects appearing outside the slide)
In the real world, pagDIV is known as a slide. go figure? Lectora may pick up on it someday.
Discussions have been disabled for this post