| View previous topic :: View next topic |
| Author |
Message |
Timmy
Joined: 10 Feb 2010 Posts: 133
|
Posted: Feb 24, 2010 12:00 pm Post subject: Little html problem, please help me! |
|
|
hi friends,
today I was working in a new template for my site, everything is fine except when ppl is uploading... the progress bar dont appear fine.
Please take a look:
http://i46.tinypic.com/2yp0zkl.jpg
After upload finish, appears fine:
http://i48.tinypic.com/2heljch.jpg
What could be?
Please help me fix this problem  |
|
| Back to top |
|
 |
PowerChaos
Joined: 19 Dec 2009 Posts: 207 Location: belguim
|
Posted: Feb 24, 2010 12:43 pm Post subject: |
|
|
thats your center command that is messed up
check your template and be sure the <center> is putted right
and that you got every table right , because it seems it get next to a table or that it goes out of center and as second to your template
as you should know , that upload bar is a iframe (inside page)
and that can give the error
Greets From PowerChaos |
|
| Back to top |
|
 |
Timmy
Joined: 10 Feb 2010 Posts: 133
|
Posted: Feb 24, 2010 1:13 pm Post subject: |
|
|
I already checked everything... Its hard to find the problem!
I tried almost everything and the problem continues...
But must be in main.html because that was the only file that I changed. I modified the CSS file but only the colors...
The strange thing is that is only the upload bar that have problems with the new design.
Can someone check my source code to see If you can found the issue? please?  |
|
| Back to top |
|
 |
Timmy
Joined: 10 Feb 2010 Posts: 133
|
Posted: Feb 25, 2010 12:29 pm Post subject: |
|
|
| Please, someone? |
|
| Back to top |
|
 |
ankurs
Joined: 10 Mar 2009 Posts: 261
|
Posted: Feb 25, 2010 1:25 pm Post subject: |
|
|
try uncomment this line in your css file
#progress_div {position:absolute;top:-9999px;left:-9999px;}
am not too sure though, am not good with css |
|
| Back to top |
|
 |
Timmy
Joined: 10 Feb 2010 Posts: 133
|
Posted: Feb 25, 2010 1:37 pm Post subject: |
|
|
Thank you ankurs for reply my topic.
I did what you said, and almost solve my problem.
If I remove that line, solves my problem, but in the middle of the site appears the message: Initializing Upload...
So I think that you solve half of the problem, unless I know now what is causing this issue
Tried to remove the top:-9999px;left:-9999px;
But didn't work also.
Any more ideas?  |
|
| Back to top |
|
 |
ankurs
Joined: 10 Mar 2009 Posts: 261
|
Posted: Feb 25, 2010 1:53 pm Post subject: |
|
|
remove the line in css and in upload_form.html
try replace
<div id="progress_div">
with
<div id="progress_div" style="position: absolute;top:-9999px;left:-9999px;"> |
|
| Back to top |
|
 |
ankurs
Joined: 10 Mar 2009 Posts: 261
|
Posted: Feb 25, 2010 2:40 pm Post subject: |
|
|
http://validator.w3.org
try fix those , specially the last ones ; might help |
|
| Back to top |
|
 |
Timmy
Joined: 10 Feb 2010 Posts: 133
|
Posted: Feb 26, 2010 1:01 am Post subject: |
|
|
many thanks ankurs, finally I solved my problem!
I had 7 errors to solve and now only have 1, and the problem with the upload process bar is finally fixed.
btw, can you help me solving the last error?
can see what is the problem.
you have my code in the post above.
this is the error:
Validation Output: 1 Error
Line 247, Column 9: end tag for "DIV" omitted, but its declaration does not permit this
| Code: | </center>
* You forgot to close a tag, or
* you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
The next message, "start tag was here" points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. |
Line 17: start tag was here
| Code: | | ><div class="content"> |
|
|
| Back to top |
|
 |
|