Page 1 of 1

two twitter accounts in footer

Posted: 19 May 2016, 15:52
by lowagie
Hi,

My wife and I share the photowebsite.
we would like to have both our twitter accounts linked via the footer of the website.
If I enter both, then the name is two times "Twitter", so not clear for visitors what the meaning is of two twitter icons.
I can create custom links with twitter icon and custom description:
Code
data-icon="twitter" title="twitter Lynn"
but as soon I use the twitter URL, it automatically goes back to the standard twitter logo & title...
Any idea how to change this in a clean way?

have a look at the footer on www.photolowagie.com
I linked the twitter logo with correct description to google.com just for testing.

Thanks!
Thijs

Re: two twitter accounts in footer

Posted: 20 May 2016, 01:19
by mjau-mjau
I can't quite see the problem. If you want separate, non-default titles for each link, then just add a TITLE for each link:
Code
<a href="https://twitter.com/imagevue" title="one"></a>
<a href="https://twitter.com/one" title="two"></a>
<a href="https://twitter.com/two" title="three"></a>
Works fine:
Image
Image
Image

Re: two twitter accounts in footer

Posted: 20 May 2016, 05:17
by lowagie
Ha, strange....

this works perfect:
Code
  <a href="https://twitter.com/thijslowagie" title="Thijs"></a>
  <a href="https://twitter.com/ostendaise" title="Lynn"></a>
what I used during my testing does not work:
Code
  <a href="https://twitter.com/thijslowagie"></a>
 <a href="https://twitter.com/ostendaise" title="Lynn"></a>
solved now!
Thanks