Webhelp output - changing the margin between the vertical sp

Oxygen general issues.
Rodrik
Posts: 30
Joined: Mon Jan 27, 2014 11:19 am

Webhelp output - changing the margin between the vertical sp

Post 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
sorin_ristache
Posts: 4141
Joined: Fri Mar 28, 2003 2:12 pm

Re: Webhelp output - changing the margin between the vertica

Post 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
Rodrik
Posts: 30
Joined: Mon Jan 27, 2014 11:19 am

Re: Webhelp output - changing the margin between the vertica

Post 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
Post Reply