Page 1 of 1

Webhelp output - changing the margin between the vertical sp

Posted: Mon Apr 14, 2014 12:52 pm
by Rodrik
Please could you advise me on how best to increase the white space between the vertical splitter and the main content in the right pane. I've tried the following:

Code: Select all

rightPane iframe{
margin-left:20px;
width:1417px; */ /* original 1437 minus the additional margin */
}
I was hoping there might be a neater way without having to adjust the iframe width. If the width is not adjusted, Internet Explorer (11) exhibits unwelcome behaviour moving the content leftwards.

Rodrik

Re: Webhelp output - changing the margin between the vertica

Posted: Mon Apr 14, 2014 5:41 pm
by sorin_ristache
Hi Rodrik,

You could try one of the following:
  • Code: Select all

    #rightPane iframe {
    margin-left: 20px;
    }
  • Code: Select all

    body {
    padding-left: 20px;
    }

Regards,
Sorin

Re: Webhelp output - changing the margin between the vertica

Posted: Tue Apr 15, 2014 10:09 am
by Rodrik
Thank you, Sorin. #rightPane iframe seems the best option as changing the margins of body also affects the top navigation.

I ended up using:

Code: Select all

#rightPane iframe{
margin-left:20px;
width: calc(100% - 20px);
}
Regards

Rodrik