I have this html:
<div class="awpcp-subtitle">Contact Information</div>
<a href="https://adsler.co.uk/wp-user-test-dashboard-
2/awpcp-reply-to-ad/13/madame-bovary/">Contact
Anonymous</a>
<div class="phone"><label>Phone:</label>
7576XXXXXX</div>
<div class="location"><label>Location:</label> London,
UK</div>
</div>
Price: £ 3.00
<div class="fixfloat"></div>
I want to take the div class.phone, and make it into a button which links to mobile dialing screen.
Html and CSS options are welcome. The thing is, where do I insert the link in the html order, is it a href link, what's it's generic url?
Each number is different, according to the person who posted the ad, and number is only visible to logged in users. Therefore, '7576XXXXXX' is just an example of one of the numbers, in a logged out view. So how do I configure this with html? Because if I use:
</label>7576XXXXXX
... and this links to dialing screen, the phone will be literally trying to dial '7576XXXXXX,' and this for every ad. Each ad will also display 7576XXXXXX as its contact number, when each ad has a different contact number.