Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Safari Browser issue

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #206154
    Manojnaanak
    Participant

    Hello Everyone,

    I have issue with safari browser

    http://test.datanova.no/webst/

    run above link open it in chrome and safari there is “OK” button a in form it goes right float in safari but in chrome it is on right place so please tell me any solution to putt up it on right side.

    #206156
    Paulie_D
    Member

    Looks like it’s the float that’s applied.

    Chrome ignores it but Safari doesn’t.

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left; /* here */
        width: 100%;
        margin-bottom: 0;
    }
    
    #206158
    Manojnaanak
    Participant

    what should i do to resolve it?

    #206159
    Paulie_D
    Member

    Remove it? It doesn’t seem to do anything.

    .input-group .form-control {
        position: relative;
        z-index: 2;
        /*float: left; */
        width: 100%;
        margin-bottom: 0;
    }
    

    Or create a special rule to override it.

    #206160
    Manojnaanak
    Participant

    i have done it before posting this issue but even it is not working.

    there is other way to fix it?

    :(

    #206163
    Paulie_D
    Member

    Nope…If you have removed that line then it should work (at least it does in Safari 5) when using developer tools.

    Perhaps you have a caching issue.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.