Lock icons on https links

3 messages Options
Embed this post
Permalink
Arminus () Lock icons on https links
Reply Threaded More More options
Print post
Permalink
Hi,

is there any way to hide the lock icons which are displayed for all my https external links ? (I'm presently running Plone 3.1.4). the Show content type icons does not have any effect on this.

thx in advance !
Diego Rubert () Re: Lock icons on https links
Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
You can add to you ploneCustom.css:

#content a[href ^="https:"],
#content a.link-https {
    background: none;
    padding: 0;
}

Or change to this to display globe icon:

#content a[href ^="https:"],
#content a.link-https {
    background: transparent url(&dtml-portal_url;/link_icon.gif) 0px 1px no-repeat;
}

A bit hard to find! :-)

--

Diego P. Rubert
Coordenadoria de Informática
Procuradoria da República no Estado de Mato Grosso do Sul
Ministério Público Federal


Arminus escreveu:
Hi,

is there any way to hide the lock icons which are displayed for all my https
external links ? (I'm presently running Plone 3.1.4). the Show content type
icons does not have any effect on this.

thx in advance !
  

_______________________________________________
UI mailing list
[hidden email]
http://lists.plone.org/mailman/listinfo/ui
Arminus () Re: Lock icons on https links
Reply Threaded More More options
Print post
Permalink
Perfect, thanks !

I might add, that one also needs to clear the CSS cache after such a change. (/Plone/portal_css -> Save). (flushing the cache in the control panel doesn't have any effect).