The theme actually makes it quite easy, since you have access to the footer info as an option, as well as a Custom CSS option.
What I would do is enclose the information that you want on the left within a DIV (the security badge info is already enclosed within its own DIV). Then you can float the contact info to the left, and the security badge to the right, with CSS.
Replace what you have in the Footer option with this:
<div id="ContactInfo">
Design ? One Line Studio Helen Barlow 2014<br />
e: onelinestudio[at]live.co.uk<br />
Fruitful theme by <a href="https://fruitfulcode.com">fruitfulcode</a>
<br />
Powered by: <a href="https://www.remarpro.com">WordPress</a>
<br />
T&Cs <a href="//www.onelinestudio.co.uk/terms-conditions">Terms and Conditions</a>
</div>
<div id="sitelock_shield_logo" class="fixed_btm"><a href="https://www.sitelock.com/verify.php?site=onelinestudio.co.uk"><img alt="PCI Compliance and Malware Removal" title="SiteLock" src="//shield.sitelock.com/shield/onelinestudio.co.uk" /></a></div>
Now go into the Custom CSS options and add these rules:
#colophon .site-info {
width: 100%;
}
#ContactInfo {
float: left;
}
#sitelock_shield_logo {
float: right;
}
What the first rule does is set the width of the footer to stretch all the way across the width of the site (for some reason, it was set to 420px).
The second rule floats the contact information to the left, while the last rule floats the security badge to the right.