• Hello.
    First of all, thank you and congratulations for the theme.
    Incredible level of customization!!! It takes a little time to understand all its functions, but the work is fully repaid.

    Please can you add a file css for Safari browsers?
    In the desktop version, the logo moves right the menu-top and in the responsive version sliders , menus and content … they are not responsive.
    If you can not have a css file only for Safari, please you can tell me how disable responsive layout only for the Safari browser?
    Thank you

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author cats_456

    (@cats_456)

    tistrega, thanks for reporting this bug. I will check it and look for a way to makes it work in Safari.

    Thread Starter tistrega

    (@tistrega)

    ok! thank you!
    so I’m waiting for news

    Theme Author cats_456

    (@cats_456)

    tistrega, I have checked theme in Safari browser by using some on-line service and I don’t see issues. It may not work in older browsers which doesn’t support flex-box and @media queries (for example it doesn’t work in Safari version for Windows, but this browser outdated and has no support).

    Thread Starter tistrega

    (@tistrega)

    Hello
    I tested your site(http://wpblogs.info/demo/sg-window/) and my site with http://www.browserstack.com/screenshots. I have been found several problems of alignment in many devices like Samsung Galaxy Note 3 , Galaxy Note 2 , Samsung Galaxy S2 , Nexus 4 , Nexus 7 , iPhone 4S , iPad 3 , iPhone 5S , HTC Wildfire … Ok ! Safari for Windows is outdatet , but all browsers pre-installed in many phones and tablets are based on webkit! You build a responsive theme and then you tell to your customers that must install a different browser to see their site? I do not think so . Otherwise you would not have included in your css files special rules for Safari old version. However I solved alone . You should evaluate the display: -webkit-box in relation to media queries specific for Safari . Chrome reacts well with the other rules . Thanks anyway

    Theme Author cats_456

    (@cats_456)

    tistrega, theme should work correctly in the new browsers, it doesn’t work in the old browsers (there is no support for it has been added). It works in latest Chrome, Firefox, IE10-11, but doesn’t work in the IE8-9 for example. Most browsers have autoupdate option for updating to the latest version.

    I think about adding js scripts for older browsers. But I’m not sure is this really important in the current browser’s situation or not.

    Thread Starter tistrega

    (@tistrega)

    Hello and thanks for the reply.
    You can solve the problem with IE 8 and 9 simply entering in the head this string :
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    Works with Windows 7-8 but I have not tried with XP. (I will let you know)

    The real problem is not Safari for PC (never used) but browsers pre-installed in mobiles and tablets (such as Samsung ) that display in the same way. Indeed I use Safari just to see how a website will appear with these browsers. Perhaps it will seem strange, but I know many people who don’t want to use Chrome because they are used to IE, many people who don’t want to install updates … many people who don’t want or don’t know how to install apps in phones and tablets. All these people say “Beautiful website! But it’s wrong !” So I think that for me it’s more professional to try to solve, instead of saying “installs a new app”. Sometimes it’s possible.

    So…
    for solve flex-box in page with right sidebar:
    -I delete display: -webkit-box; for class “content”, “main-wrapper” and “flex”
    -I add (in style.css) this special rule for Safari&Co (not valid for Chrome):

    @media screen and (-webkit-min-device-pixel-ratio:0)
    	       and (min-width: 960px)
    
    {
    .flex,.main-wrapper {
    	display: -webkit-box;
    }
    }

    In this way, the position of the sidebar is correct , but I couldn’t fix the alignment of the articles ( in blog page ) from 680 px to up, which are shown in column ( but at least, it possible read them).

    to solve the alignment of the images (in my case sg-images widget in full width):
    -I delete (from image.css) display: -webkit-box; for class “.widget .main-wrapper-image” and “.widget .wrapper-image”
    -I add (in the same file)

    @media screen and (-webkit-min-device-pixel-ratio:0) {
      .element {
    	margin: 0 0 !important;
    }
    }
    
    @media screen and (-webkit-min-device-pixel-ratio:0)
    	      and (min-width: 960px) {
      .widget .main-wrapper-image, .widget .wrapper-image {
    	display: -webkit-flex !important;
            display: flex !important;
    	}
    } /*this is for Chrome*/
    
    @media screen and (-webkit-min-device-pixel-ratio:0)
    			and (min-width: 1020px) {
    .widget .main-wrapper-image, .widget .wrapper-image {
    display: -webkit-box !important;
    	}
    }

    to fix the alignment of the logo
    -I add `@media screen and (-webkit-min-device-pixel-ratio:0) {

    .logo-block {
    width: 0%;
    }
    }`

    But this is only my personal and intricate solution: the “creature” is your 😀 , have you a better idea?
    I hope I’ve been helpful.

    I have a Problem (see above Posts) with Opera for Linux, Konquerror and IE8 on WinXP

    Many of our Users have this Browsers and no Money for Upgrades

    have a look at http://www.erwerbslosenforum.de

    BtW. Great Work, Thanks in advance.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Problems with Safari browser’ is closed to new replies.