Submit button not visible in IE browser. Because the submit button has a mozilla specif gradient and the text color is white people who use IE can't read the text.

I fixed this by adding the following css to my theme:

.multipage-controls-list input#edit-submit
{
	background: #4D90FE !important; /* for non-css3 browsers */
	background-image: #4D90FE !important; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4D90FE', endColorstr='#4787ED') !important; /* for IE */
	background: -webkit-gradient(linear, center top, center bottom, from(#4D90FE), to(#4787ED)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(center top,  #4D90FE,  #4787ED) !important; /* for firefox 3.6+ */ 
}

I found the cross browser css on the following page
http://webdesignerwall.com/tutorials/cross-browser-css-gradient

Comments

Uersu’s picture

I have also run into the above bug and can add some more observations:

1) I have seen the problem only occur if the "Multipage Group" was set to "move submit to last multipage" to True; if this setting was false, then everything was ok

2) I have seen this issue in the following browsers: IE 7 and IE 9

3) As a work around I changed the fieldgroup multipage.css file

It would be great if this could be fixed in the next release! Thanks for the great work and pointing out the work around for this problem.

Stalski’s picture

Status: Active » Fixed

I merged the css within the multipage css itself, removing the importants (this cannot be used inside a module as field_group imho)
Thx for the code.

Could you test this on your end please? If something should be wrong, pls reopen the issue.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.