Re: [O] How to hide UP and HOME links ?

2015-10-30 Thread Mehul Sanghvi
I had to use the following CSS entry to make the links invisible: #org-div-home-and-up { font-size: 80%; color: #edf0f2; background-color: #edf0f2; } #org-div-home-and-up a:link, a:visited { color: #edf0f2; background-color: #edf0f2; } to get what I wanted. Is there a

Re: [O] How to hide UP and HOME links ?

2015-10-30 Thread Nick Dokos
Mehul Sanghvi writes: > I had to use the following CSS entry to make the links invisible: > > #org-div-home-and-up { >     font-size: 80%; >     color: #edf0f2; >     background-color: #edf0f2; > } > > to get what I wanted. > > Is there a better way to do this either via

[O] How to hide UP and HOME links ?

2015-10-30 Thread Mehul Sanghvi
I have :html-link-home and :html-link-up defined for my project. I also use the org-info.js script for navigation and so end up with two places where the UP and HOME links are available. How do I prevent or hide the UP and HOME links that are in the #org-div-home-and-up HTML div tag? I want to