From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mehul Sanghvi Subject: How to hide UP and HOME links ? Date: Fri, 30 Oct 2015 08:31:09 -0400 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a113559923262ac0523519ac5 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57890) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs8pr-0005vu-Gi for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 08:31:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zs8pq-0008MA-HI for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 08:31:11 -0400 Received: from mail-qg0-x22e.google.com ([2607:f8b0:400d:c04::22e]:34023) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs8pq-0008M3-E6 for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 08:31:10 -0400 Received: by qgem9 with SMTP id m9so59531413qge.1 for ; Fri, 30 Oct 2015 05:31:10 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: ML Emacs-orgmode --001a113559923262ac0523519ac5 Content-Type: text/plain; charset=UTF-8 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 keep the the Up and Home links created by org-info.js visible. For reference you can look at http://mehul.users.sanghvi.org/no-frills/project-euler/index.html#orgheadline2 in which case the UP and HOME in the upper left corner is what I want to hide or prevent from being shown. cheers, mehul -- Mehul N. Sanghvi email: mehul.sanghvi@gmail.com --001a113559923262ac0523519ac5 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

I have :html-link-home and :html-link-up de= fined for my project.=C2=A0 I also use the org-info.js script for navigatio= n and so end up with two places where the UP and HOME links are available. = =C2=A0

How do I prevent or hide the UP and HOME links th= at are in the #org-div-home-and-up HTML div tag?=C2=A0 I want to keep the t= he Up and Home links created by org-info.js visible. =C2=A0

<= /div>
For reference you can look at=C2=A0


in which c= ase the UP and HOME in the upper left corner is what I want to hide or prev= ent from being shown.=C2=A0



cheers,

=C2=A0 =C2=A0 =C2=A0 mehul

--
Mehul N. Sanghviemail: mehul.= sanghvi@gmail.com
--001a113559923262ac0523519ac5-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mehul Sanghvi Subject: Re: How to hide UP and HOME links ? Date: Fri, 30 Oct 2015 19:59:39 -0400 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a11352c406e70e605235b3813 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsJa8-0005Zn-WD for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 19:59:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZsJa7-00025E-RN for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 19:59:40 -0400 Received: from mail-qg0-x230.google.com ([2607:f8b0:400d:c04::230]:35557) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsJa7-00024n-Ma for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 19:59:39 -0400 Received: by qgbb65 with SMTP id b65so74582693qgb.2 for ; Fri, 30 Oct 2015 16:59:39 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: ML Emacs-orgmode --001a11352c406e70e605235b3813 Content-Type: text/plain; charset=UTF-8 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 better way to do this either via org-mode or via CSS ? cheers, mehul On Fri, Oct 30, 2015 at 8:31 AM, Mehul Sanghvi wrote: > > 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 keep the the Up and Home > links created by org-info.js visible. > > For reference you can look at > > > http://mehul.users.sanghvi.org/no-frills/project-euler/index.html#orgheadline2 > > in which case the UP and HOME in the upper left corner is what I want to > hide or prevent from being shown. > > > > cheers, > > mehul > > -- > Mehul N. Sanghvi > email: mehul.sanghvi@gmail.com > -- Mehul N. Sanghvi email: mehul.sanghvi@gmail.com --001a11352c406e70e605235b3813 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

I had to use the following CSS entry t= o make the links invisible:

#org-div-home-and= -up {
=C2=A0 =C2=A0 font-size: 80%;
=C2=A0 =C2=A0 color= : #edf0f2;
=C2=A0 =C2=A0 background-color: #edf0f2;
}

#org-div-home-and-up a:link, a:visited {=
=C2=A0 =C2=A0 color: #edf0f2;
=C2=A0 =C2=A0 background= -color: #edf0f2;
}

to get what I w= anted.


Is there a better way to do = this either via org-mode or via CSS ?=C2=A0


cheers,

=C2=A0 =C2=A0 =C2=A0 mehul
<= div>

On Fri, Oct 30, 2015 at 8:31 AM, Mehul Sanghvi <mehul.sanghvi@gma= il.com> wrote:

I have :html-link-home and :html-link-up defined for my= project.=C2=A0 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. =C2=A0
<= br>
How do I prevent or hide the UP and HOME links that are in th= e #org-div-home-and-up HTML div tag?=C2=A0 I want to keep the the Up and Ho= me links created by org-info.js visible. =C2=A0

Fo= r reference you can look at=C2=A0


in wh= ich case the UP and HOME in the upper left corner is what I want to hide or= prevent from being shown.=C2=A0


cheers,

=C2=A0 =C2=A0 =C2=A0 mehul

--
Mehul N. Sanghvi
email: mehul.sanghvi@gmail.com



--
Mehul N. Sanghvi
email: mehul.sanghvi@gmail.com
--001a11352c406e70e605235b3813-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: How to hide UP and HOME links ? Date: Fri, 30 Oct 2015 21:35:49 -0400 Message-ID: <87wpu3251m.fsf@pierrot.dokosmarshall.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45392) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsL5O-0007gU-OI for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 21:36:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZsL5K-0005az-NT for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 21:36:02 -0400 Received: from plane.gmane.org ([80.91.229.3]:53126) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsL5K-0005ag-GY for emacs-orgmode@gnu.org; Fri, 30 Oct 2015 21:35:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZsL5H-0004NV-NN for emacs-orgmode@gnu.org; Sat, 31 Oct 2015 02:35:55 +0100 Received: from pool-108-20-41-232.bstnma.fios.verizon.net ([108.20.41.232]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Oct 2015 02:35:55 +0100 Received: from ndokos by pool-108-20-41-232.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Oct 2015 02:35:55 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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 org-mode or via CSS ?  { ... visibility: invisible; } maybe? -- Nick