Looking for a way to center two fields ("Call Us" and "Our Email") while also ensuring they are responsive on different screen sizes? The goal is to have them stack one on top of the other when viewed on a small screen. Even though inline CSS has been used to position them correctly on large screens, they fail to stack as intended on smaller screens. Since no CSS file was found to place the code in, the current solution involves using inline CSS. Is it feasible to utilize inline CSS to address this issue? If so, here is the existing inline CSS that successfully centers the two fields on a large screen.
<div style="justify-content: center; display:flex;" class="row">
<div class="col-xl-4 col-xs-4 col-lg-4 col-md-4 col-sm-4 col-12 footer_contact_info">
However, this setup does not ensure that the fields are responsive and stacked properly on smaller screens. Initially, there were three fields with "Our Address" being the third field which has since been removed.
Attempting to make the layout responsive for small screens by adding additional inline CSS did not yield the desired outcome.