• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

upload box align center

jimsweb

Chevereto Member
I have made the upload box fixed width in my website. It works fine and centered in chrome. But it doesn't work in IE. can anyone please advise, what to do to make it centered in IE as well?

/* upload box fixed width*/
.upload-box{
max-width: 1190px;
margin: auto;
}
 
Which is the website url? Is hard to help without seeing the problem.
 
My IE version is 11.420.10586.0
I think it's the latest version. It's showing wrong alignment (left aligned). It's true it doesn't do any harm, but would have been nice if it's aligned to center. I tried with different options, but it works everywhere, except on this IE 11. Not Sure, how it worked for you... 🙁

upload_2016-7-2_23-24-39.png
 
I don't actually run ie 11, I had to use edge + ie11 emulation.
 
can you please suggest if this can be fixed with a css hack? thanks for your helping hand!
 
The editions that you are doing require a lot of knowledge of CSS and sadly, IE11 doesn't play that good with helpers like css calc and stuff like that.

I used this:

Code:
#anywhere-upload {
left: 50%;
margin-left: -595px;
width: 100%;
}

But it won't work in responsive, you will need to add the rules for each responsive step.
 
Back
Top