IE Positiong error

adampdarcy

New Member
Hi
I'm having problems getting my positioning correct with a nice slider module I'm using.

As usual, it works in Forefox and Chrome, just not IE :mad:

http://www.unionoldgloryclassic.com/

Does anyone know what I'm doing wrong? I think it's something to do with the position:relative statement.

Thanks in advance

Adam
 

leroy30

New Member
Hi there did you fix it? I can't see the problem.

A lot of positioning issues can be solved with position:relative in the right place.
 

PixelPusher

Super Moderator
Staff member
First off you are overusing the division tag. Many of them could be eliminated. For example "wrapper" is not needed. Just make the L/R margins for "mainpanel" auto.
Also, don't use the empty div tag with a clear style to break floats. This is bad practice and semnatically incorrect. Just use the clear style on the previous element and use margins for extra space.

All in all, try to add as much css on each element that way you don't have as much code to dig through. Makes you life easier and allows the web crawlers to index your site faster. Win win situation :D

Now to fix your footer (so it aligns at the bottom). This is due to the fact that you have floats in the manipanel div. Change the overflow to hidden. Fixed. In general, if you want a parent container to expand with the floated child elements you need to use
Code:
overflow:hidden;

In regards to your module (the image rotator), yeah I am not sure...more honest, that thing has more nests than bird exhibit at the zoo! Is that an auto-gen module? If so I would suggest making your own. The concept is relatively simple and can be done a whole lot better with some clean markup and jquery.

Nevertheless, I did look through the code you have fro the module but I didn't not find an answer, sorry :(

If I have more time later, I will take a second pass through it. But I strongly recommend rebuilding it.
 
Last edited:

emilyl

New Member
The problem of stable bilateral teleoperation with position-error based force feedback in the presence of time-varying possibly unbounded communication delay is addressed.
 

PixelPusher

Super Moderator
Staff member
The problem of stable bilateral teleoperation with position-error based force feedback in the presence of time-varying possibly unbounded communication delay is addressed.

What are you saying here? To me, it sounds like brain puke.

Your statement doesn't appear to help anyone (well maybe your post number) please explain, or I will delete it.


FYI, I have read some of your other posts and they also fall into this category (nonsense), that is the only reason I bring this up.
 
Top