mainlymetals I am unable to access the admin panel page due to extra security layer added. Kindly provide details for the extra htaccess login also enabling us to take closer look
Also, You may try the following to get the result as envisaged:
1) Creating new module position : You can kindly refer to this documentation for creating new module position - custom_10
2) Custom module creation : Assign custom module alongwith adding the specific html to new position named custom_10 :
<div class="video_text_sub"><br /><br />We work closely with our customers to get the details right and get your product done when you need it.</div>
<a class="readon readon_highlight2" href="index.php?option=com_content&view=article&id=57&Itemid=245">Read More</a> <a class="readon readon_highlight_dark" href="index.php?option=com_content&view=article&id=59:our-services&catid=39:services">Services</a>
3) CSS : Thereon, You may require to add some CSS rule-sets in order to position the module properly
Tips provided here also could be of help:
https://member.joomlart.com/forums/d/1136-can-i-add-extra-search-fields-in-ja-teline-v/35
The code for adding new position can be added in /templates/hexa_corp/index.php file around line 278 and the below mentioned code can be changed from :
<?php if ($s5_pos_custom_3 == "published") { ?>
<div id="s5_pos_custom_3_4_wrap">
<div id="s5_pos_custom_3">
<?php s5_module_call('custom_3','notitle'); ?>
<div style="clear:both; height:0px"></div>
</div>
<?php if ($s5_pos_custom_4 == "published") { ?>
<div id="s5_pos_custom_4_wrap">
<div id="s5_pos_custom_4_wrap_inner" class="s5_wrap">
<div id="s5_pos_custom_4">
<?php s5_module_call('custom_4','notitle'); ?>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
<?php } ?>
<div style="clear:both; height:0px"></div>
</div>
<?php } ?>
to
<?php if ($s5_pos_custom_3 == "published") { ?>
<div id="s5_pos_custom_3_4_wrap">
<div id="s5_pos_custom_3">
<?php s5_module_call('custom_3','notitle'); ?>
<div style="clear:both; height:0px"></div>
</div>
<?php if ($s5_pos_custom_4 == "published") { ?>
<div id="s5_pos_custom_4_wrap">
<div id="s5_pos_custom_4_wrap_inner" class="s5_wrap">
<div id="s5_pos_custom_4">
<?php s5_module_call('custom_4','notitle'); ?>
<div style="clear:both; height:0px"></div>
<?php if ($s5_pos_custom_10 == "published") { ?>
<div id="s5_pos_custom_10">
<div class="s5_wrap">
<?php s5_module_call('custom_10','notitle'); ?>
<div style="clear:both; height:0px"></div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php } ?>
<div style="clear:both; height:0px"></div>
</div>
<?php } ?>
Note: Would suggest to take backup of your site or current file before performing aforesaid steps, in case rollback required whilst facing any issues e.t.c