Viewing 4 reply threads
You must be logged in to reply to this topic.
Hello,
Using the NEW Business Corporate Theme.
Question: Can I change the default text for the shortcode below?
[contact_information tel=”444.555.6666″ addr=”#fhhcodd” email=”[email protected]”]
Example: Want to change “Our Locations” to “License #”
Additional can I change the Icons as well?
Please tell me how.
Thanks
See image attached
[caption id="" align="alignnone" width="837"] the problem[/caption]
Hello,
Sorry for the late reply.
Please go to file specular\includes\register\register_shortcodes.php and find these lines:
$output .= '<div class="contact_information">';
if(!empty($addr)):
$output .= '<dl class="item dl-horizontal addr">';
$output .= '<dt><i class="icon-location-arrow"></i></dt>';
$output .= '<dd><span class="title">'.__('Our Locations', 'codeless').'</span><p>'.$addr.'</p></dd>';
$output .= '</dl>';
Change here the text and the icons you want to use.
Best regards!
Is it possible to change the Icons and the icon size?
Hello,
You can change the icons in the code above. See this part: <i class="icon-location-arrow"></i>
The ‘icon-location-arrow’ is the class that set’s the location icon. If you want to use another icon, just change this class. You can find a list of all available icons in file specular\admin\assets\css\vendor\elusive-icons\elusive-webfont-ie7.css.
To change it’s size, add into your custom css box, these lines:
.contact_information dt i { font-size: 22px; }
It will change all three icons sizes.
Best regards!
You must be logged in to reply to this topic.