So i’m working on this website for a client and when the site is viewed on Safari the columns don’t display correctly (side by side) they stackup as if there was a max-width specified for the row. This only happens on Safari every other browser displays the columns correctly. Please help.
Hello @industriallock,
Thanks for writing in! Safari browser is a bit sensitive with broken html. Please sure that all your html contents is valid and correct. I have found a few broken codes like this:
<p style="color:#64778b;">©2019 Oli Electric </br>All Rights Reserved</p>
Which should be:
<p style="color:#64778b;">©2019 Oli Electric <br/>All Rights Reserved</p>
And this also:
We are big enough to handle your next big project while </br>
still maintaining a level personalized customer attention </br>
not usually found with the big guys in the industry.
Which is supposed to be this:
We are big enough to handle your next big project while <br/>
still maintaining a level personalized customer attention <br/>
not usually found with the big guys in the industry.
Please also check your other codes for any unclosed tags like div, strong or p tags.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.