-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS style for image upload has some problem #86
Comments
Which examples file are you looking at? |
@RandomlyKnighted example file: form-post.html |
billzt
changed the title
image style has some problem
image upload style has some problem
Feb 27, 2016
billzt
changed the title
image upload style has some problem
CSS style for image upload has some problem
Feb 27, 2016
Ah I see what you're talking about now. PR #68 fixes this issue. |
OK. |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The original CSS style has problems.
.imgUpload { width: 10; height: 10; position:absolute }
I can't click the upload button. It didn't do anything.
However, if I change to this (inspired from http://www.bootcss.com/p/bootstrap-wysiwyg/), it works.
.imgUpload { opacity: 0; position: absolute; top: 0px; left: 0px; width: 41px; height: 30px; }
The text was updated successfully, but these errors were encountered: