Discussion


Centering for IE is different than centering for other browsers. So I put the following in the connect.css:

body {
    /* NM 20121222 text align property added to center help in IE */
    text-align: center;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}

And:

div#presentation_div {
    /* NM 20121221 Margins changed to center TOC panel and content area */
    margin-left: auto;
    margin-right: auto;
    /* Original margin value */
    /* margin: 0px; */
    padding: 0px;
    /* NM 20121222 text align property added to center help in IE */
    text-align: left;
    visibility: hidden;
}


HelpCenter/Tips/Reverb: Centering the page/Discussion (last edited 2013-01-22 22:18:58 by NadineMurray)