• Resolved katz123

    (@katz123)


    Hello,

    my site is working well in chrome but in IE is shows the front page boxes not correct:

    chrome:

    chrome

    IE:

    IE

    How can I fix this? Thanks

    • This topic was modified 6 years, 4 months ago by katz123.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author themevision

    (@themevision)

    Hello,

    Try to insert the following CSS codes into Customizing->General->Additional CSS:

    @media only screen and (min-width: 992px) {
      #frontpage-boxes{
          width:100%!important;
        }
        #frontpage-boxes .fbox-1, 
        #frontpage-boxes .fbox-2, 
        #frontpage-boxes .fbox-3,
        #frontpage-boxes .fbox-4
        {
            width:25%!important;
        }
    }
    
    @media only screen and (max-width:768px) {
        #frontpage-boxes .fbox-1, 
        #frontpage-boxes .fbox-2, 
        #frontpage-boxes .fbox-3,
        #frontpage-boxes .fbox-4
        {
            width:100%!important;
        }
    }
    

    Regards

    Thread Starter katz123

    (@katz123)

    Wow perfect! thanks for the fast support

    Thread Starter katz123

    (@katz123)

    solved

    Theme Author themevision

    (@themevision)

    I’m glad it works.

    Thank you for using our theme.

    Best Regards

    Theme Author themevision

    (@themevision)

    Hi, @katz123!

    I have visited your website and found that you also need to insert the following code additionally (it’s for the medium screen sizes devices)

    @media only screen and (max-width: 991px) and (min-width: 769px)  {
    
    #frontpage-boxes .fbox-1, 
        #frontpage-boxes .fbox-2, 
        #frontpage-boxes .fbox-3,
        #frontpage-boxes .fbox-4
        {
            width:50%!important;
        }
    }

    Regards

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

The topic ‘Problem with front pager boxes only with internet explorer’ is closed to new replies.