Skip to main content
Topic: How to do the Upgrade? (Read 7067 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: How to do the Upgrade?

Reply #30

Interesting problem.
So you had:
Code: [Select]
.drop_area {
    font-size: 1.1em
}
and this breaks the upload?
Good to know, something to look at.
Bugs creator.
Features destroyer.
Template killer.

Re: How to do the Upgrade?

Reply #31

Yes, Emanuele. I think, it was just this font-size, I changed nothing else.

Re: How to do the Upgrade?

Reply #32

there is a ; at the end Missing  ;)
Many are stubborn in relation to the path, a few in relation to the target.
Visit our new Forum Project on https://www.portamx.com

Re: How to do the Upgrade?

Reply #33

I had this code before, while it was not working:
Code: [Select]
.drop_area {
    background-color: #fbecce;
    border: dashed 1px #6993bb;
    font-size: 1.1em;
}

But there was also a mistake about the font-size here:
Code: [Select]
/* Common button styling. */
.button_submit, .right_submit, .left_submit, .button_reset, .drop_area_fileselect_text,

because it changed to this with 1.1.1:
Code: [Select]
/* Common button styling. */
input[type="submit"], .drop_area_fileselect_text, button[type="submit"], input[type="button"],



Re: How to do the Upgrade?

Reply #34

Technically the last line of a CSS definition doesn't need he ";". O:-)
Bugs creator.
Features destroyer.
Template killer.

Re: How to do the Upgrade?

Reply #35

Quote from: emanuele – Technically the last line of a CSS definition doesn't need he ";". O:-)
Technically .. yes .. but many browser have problems without a ; at the end  ;)
Many are stubborn in relation to the path, a few in relation to the target.
Visit our new Forum Project on https://www.portamx.com

Re: How to do the Upgrade?

Reply #36

Never heard of that one...
Bugs creator.
Features destroyer.
Template killer.