Search…

X3 Photo Gallery Support Forums

Search…
 
lowagie
Experienced
Topic Author
Posts: 46
Joined: 29 Sep 2006, 07:27

two twitter accounts in footer

19 May 2016, 15:52

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14010
Joined: 30 Sep 2006, 03:37

Re: two twitter accounts in footer

20 May 2016, 01:19

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
 
lowagie
Experienced
Topic Author
Posts: 46
Joined: 29 Sep 2006, 07:27

Re: two twitter accounts in footer

20 May 2016, 05:17

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