By Fagault Eric on Tuesday, 13 March 2018
Posted in General
Replies 5
Likes 0
Views 303
Votes 0
Hello,
Members of my network have informed me of worries with SAFARI, I installed SAFARI on a two my posts (PC with Windows 10) the body of the page is displayed under the last module placed in the lateral positions
Have you had any comments about malfunctions with this browser?
I think it's CSS.
Best regards.
Eric
Based on what we checked, it seems like Windows Safari browser doesn't support many modern web standards like display: flex; , you can check my attached screenshot below this is what i inspect element on the Windows Safari browser console tool.

And Apple already discontinuing Safari on Windows.

Reference link : https://stackoverflow.com/questions/46081776/flexbox-not-working-in-safari-5-1-windows

1. Switch to another modern browser to view your website.

Or

2. Apply this custom css hack into your current Easysocial custom.css file.


body #es .es-container {
display: -webkit-box;
width: 76%;
}

body #es .es-content {
display: table;
width: 100%;
}


But i am not advise to apply this custom css hack, it might affect other thing as well, but you can give it a try and see how it goes.
·
Tuesday, 13 March 2018 13:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank You for your reply
·
Tuesday, 13 March 2018 23:38
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Eric
·
Wednesday, 14 March 2018 00:51
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post