Here is the code snippet:
<div class="container">
<div class="row">
<div class="container1 col-lg-4 col-md-4 col-sm">
<h1 class="status">Status:</h1>
</div>
<div class="container2 col-lg-6 col-md-8 col-sm-6 text-sm-left">
<span class="open"><?php include 'opent-stengt.php'?></span>
</div>
</div>
<div class="container3 row col-md-9">
<p class="info"><?php include 'status.php'?></p>
</div>
<div class="container4 row col">
<span class="buttonfix mt-4"><a class="button1">Sist oppdatert:<?php include 'time.php'?></a></span>
</div>
</div>
I want to adjust the position of the text by moving it down approximately 16% on desktop while ensuring it looks good on mobile devices as well. How can I achieve this? You can view my Codepen here: https://codepen.io/andve04/pen/MWwJbpb There seems to be a bug where the "open" element covers the "status" element when minimizing the window. Can you provide any guidance on how to fix this issue?
Your assistance is highly appreciated!