Hi
Here is the css code. Add below css in your /wp-content/themes/dt-the7/css/main.min.css file
@media only screen and (min-width:320px) and (max-width:760px){
.company-info {
text-align: center;
}
}
You have to do last step given below. In your text widget you are having code like below
<p>Registered Address:<br>
TGF Security Limited, 4 Park Road<br>
Birmingham, B13 8AB </p>
<p>Tel: <a href="tel:+441212190102">0121 219 0102</a><br>
Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Co. Reg. Number 10376463</p>
Change this with
<div class="company-info">
<p>Registered Address:<br>
TGF Security Limited, 4 Park Road<br>
Birmingham, B13 8AB </p>
<p>Tel: <a href="tel:+441212190102">0121 219 0102</a><br>
Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Co. Reg. Number 10376463</p>
</div>