Viewing 3 reply threads
You must be logged in to reply to this topic.
I’m working on my contact page where I’ve listed my email address, but I can’t add a link to it. What can I do? I want it to have the icon to the left like my phone number and city/state info.
This is the page: https://webdetta.com/contact-us
Oh, that’s too bad. Thank you, Mihaila.
Is there a way for me to make changes to the html code? If so, how can I access it?
Hello,
The contact elements are all list items. So to edit the code you have to edit file vc_template/list_item.php. To make it recognize the html tags, find these lines:
$output = '<li class="'.esc_attr($style).'">';
if($style == 'simple'){
$output .= '<i class=""></i>';
$output .= esc_html($title);
Replace this line: $output .= esc_html($title);
With this: $output .= $title;
But however it is not possible to place the “mailto” in an anchor links.
Let us know.
Best regards!
You must be logged in to reply to this topic.