Copy link to clipboard
Copied
Hi,
For my project, I need to position the Dynamic Content Filtes (DCF) first on the left.
At the moment the default setting is that the TOC is taking the first position to the left, but I wish my project to have DCF on the left followed by TOC next to it (to the right of DCF).
Thanks in advance for your feedabck.
Luke
Copy link to clipboard
Copied
Point version of RH? (always lead with that one)
What skin/preset/output are you using?
Copy link to clipboard
Copied
Adobe RoboHelp 2020 and skin Azure_Blue
Copy link to clipboard
Copied
+ responsive HTML5
Copy link to clipboard
Copied
Are you on patch 7? I don't know if that control positioning is exposed in the Presets - I suspect that you'll need to dive into the coding driving the output.
Copy link to clipboard
Copied
You could try adding this as a custom css, given that you only have two buttons (if you have more than 2, the results might not be what you want). But to make that tab active on first use would require javascript - once your users have used it once, it should then be the default tab, at least until you clear your cookies or close the help with a different tab active.
div.nav {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
}
Copy link to clipboard
Copied
Thanks for the solution. It sounds promising, however, I am now going to try out the frameless output.