function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
eddieeddie 

Cross browser issues with sControls that use /Theme2/common.css

When using Internet Explorer, I am seeing 3 UI problems in sControls that link to /dCSS/Theme2/default/common.css. I don't see any of these issues on these controls when using the FireFox browser or if I link to the Theme1 sheets.
 
1) Controls of class 'requiredInput' do not initially render to the right location, they render to the top of the control. Stranger still they move to the proper location if the page is resized.
 
2) I don't get the nice rounded corner of the lower right hand corner of my tables. It shows up as a disconnected line.
 
3) I see an underscore or similar char preceding the icon used with the datapicker (image of calss = 'datePickerIcon')
 
Any Ideas?
Thanks.
eddieeddie

My first two problems were resolved by changing the definition of my enclosing div:

<DIV id="divMain" style="POSITION: relative;" ms_positioning="GridLayout">

I removed the style and  ms_positioning attributes and now I have good looking corners and no funny stuff happening with my required fields. 

eddieeddie

My 3rd problem, the underscore issue,  was being caused by some extra white space:

output += " <img src='/s....

-vs-

output += "<img src='/s....

Since this image is inside a link, IE renders the white space as part of the link. Firefox does not.

Live & Learn

Message Edited by eddie on 03-10-2006 09:10 AM