You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use the ReadTheOrg theme, I noticed that the UP | HOME links generated by Org Mode are covered up by the table of contents on the left side. This makes page navigation difficult if there are multiple pages in a site. The quick fix that I found is to add the following to the top of any .org file:
When I use the ReadTheOrg theme, I noticed that the
UP | HOME
links generated by Org Mode are covered up by the table of contents on the left side. This makes page navigation difficult if there are multiple pages in a site. The quick fix that I found is to add the following to the top of any .org file:html_head: <style>#org-div-home-and-up { text-align: right; padding-right: 10pt; }</style>
This will push the links to the right side of the div, so they will be visible. The screenshots below show the difference.
Before:
After:
I can try to create a pull request to implement this change if desired once I wrap my head around the code/
The text was updated successfully, but these errors were encountered: