Help - Not showing properly on Opera.

Status
Not open for further replies.

CyberJ37

Active Member
1,493
2008
2
0
Site: http://www.warezblog.org

Normal:
rD8ZX.jpg


On Opera:
BiMZU.jpg
 
18 comments
opera is a browser which shows the output exactly as the input is given
ff and ie neglect the mistakes in the code and display it

check your code if its correct
upgrading opera can be another option ;)

btw i can see it properly on opera

[slide]http://i46.tinypic.com/sziiow.jpg[/slide]
 
It may be as a result of your resolution. Try wrapping it in a DIV and using the "min-width" CSS property.

Also moving to Development section...
 
It doesn't seem to be his resolution as you can normally find this out by resizing your browser window.
Maybe try a shift refresh and let us know if your still getting it?
 
Usually that is the result of how your DOM is build up.

Code:
<a><img /></a>
<p>text</p>
That's what yours looks like and it's roughly the equivalent of this:
Code:
<a><img /></a>
<br />
text
Notice the line break?
So:
Code:
<p><a><img /></a>
text</p>
Along with the correct css should fix it. However I'm not sure if the P tag has restriction on what type of child elements it can have. If it has restrictions replacing P with DIV should solve it. God I <3 the cross browser HTML mess.
 
Yah I realised, what im tryin to work out is how they're staying on the same line, shouldn't the <p> tag automatically wrap it to the next line?
And I dont see a float:left there either.
 
I cant re-create the error, but thanks for the talisman desktop program :P <3

Edit: Floats are actually very specific things to use. And will break depending on where it is embedded.
 
P stands for paragraph as you most likely know. Everything outside it in the same parent element will be either above or below it because it's not in the same paragraph.
 
Status
Not open for further replies.
Back
Top