Trident50
Trident50

Reputation: 21

Adding href into li class="email"

Happy New Year!

Not sure if you all can help me out - I am FAR from a programmer! - but totally stumped. I can usually muddle my way through changes like this but, lost with this one.

If I look at my site using Firebug - and see the code below - and edit, within the Firebug console the "email" line and change it to:

<a href="mailto:[email protected]?subject=HELP">Send Email</a>

it works - just the way I want.

But for the life of me I can not find the file/where/what to edit in order to add this html to make that line of text clickable for my users.

Can someone point the way to where I might find this file? Thanks! Rob

<div id="top-bar" class="text-center top-bar-hide" role="complementary"          style="visibility: visible; margin-top: 0px;">
<div class="wf-wrap">
<div class="wf-table wf-mobile-collapsed">
<div class="wf-td">
<div class="mini-contacts wf-float-left">
<ul>
<li class="email">[email protected]</li>
<li class="skype">TSLHelpdesk</li>
<li class="clock">Standard SLA support is available M-F, 7AM-7PM EST</li>
</ul>
</div>
<div class="soc-ico show-round">
</div>
</div>
</div>
<span class="act"></span>
</div>

Upvotes: 2

Views: 1457

Answers (1)

kgh
kgh

Reputation: 167

Is this what you want?

<li class="email"><a href="mailto:[email protected]?subject=HELP">Send Email</a></li>

Upvotes: 5

Related Questions