-
-
Hi there,
I’ve setup a team page on a website that uses this theme and within the description (not title) of the individual team members, I want to list contact details such as email, direct dial and general phone number. I have entered this information in the relevant field, but I want it to appear on separate lines. It seems that no html ( <br> / <p> ) that I enter will split this data. Can you suggest a way that I can get this to work please as there are no options to have this info available upon hover of the image.
Many thanks,
Simon
-
Hello,
Are you using shortcodes for the social? Add these lines into your custom css box:
.icon_text { width: 100%; } .social_icons_sc { width: 100%; }
If that won’t do, give me your site’s url so i can check.
Best regards!
-
Hi Mihaila,
Thanks for your response, and apologies for my delayed reply.
I don’t think that I explained the problem properly. If you are able to take a look at the page:
https://69.195.124.87/~thedesp5/Acorn/?page_id=2052You will see that I am trying to manually enter contact details into the team member info panel but I cannot get the information to display on separate lines (even when using <p> or <br>). It is important that I list phone, email and mobile and there does not seem a way to do this via the shortlinks / hover over image option.
Any ideas on how I can split the contact info so that is sits on separate lines?
Thanks again,
Simon
-
Hello,
Please go to file:vc_templates\staff.php , find this line(63):
$output .= '<p>'.codeless_text_limit(get_the_excerpt(), 25).'</p>';
And replace with this:$output .= '<div>'.codeless_text_limit($content, 25).'</div>';
Now you can use<br>
tag, in text editor, to break the lines.Best regards!
-
Hi again, the change to the code works great!
Thanks again for your help,
Simon
-
You must be logged in to reply to this topic.