Link to home
Start Free TrialLog in
Avatar of D J
D JFlag for United States of America

asked on

ColdFusion with CSS fixed positioned button doesn't work on I.E. 7&6

When opening my webpage with I.E. 6 or 7 the fixed button normally stay's on the right is at the bottom of the page.

My CSS code:

<style type="text/css">
.buttonStyle {
position:fixed;right:
bottom:350px;
right:0px;
width: 145px;
height: 65px;
border: none;
border: none;
background: #FFF url(Pix/update.png);
}
</style>

Button code:

<input type="submit" name="save" value="" class="buttonStyle" onClick="return confirm('Are You Sure You Want To Update?');">
Avatar of Hagay Mandel
Hagay Mandel
Flag of Israel image

Please provide a link.
ASKER CERTIFIED SOLUTION
Avatar of s8web
s8web

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of D J

ASKER

Solution: remove "right:" from the code below - I think there was a conflict with my results table.


style type="text/css">
.buttonStyle {
position:fixed;right:
bottom:350px;
Avatar of D J

ASKER

I've requested that this question be closed as follows:

Accepted answer: 0 points for DJPr0's comment #a38424974

for the following reason:

Found code error after trial an error.
Avatar of s8web
s8web

Yes, that is the exact error that I pointed out comment ID: 38424687.

I don't quite understand why you would start a close request after a member of the community which you asked for help pointed out your problem for you, but I'm sure you have a good reason, so I won't object.
Avatar of D J

ASKER

Sorry, I guess I didn't refresh EE when I posted the solution.
Avatar of D J

ASKER

Thanks s8web!