Sandy wrote:

> I figured it out - the user had his text set to "largest" and it made
> things go a bit wonky. A few little changes and we are ok now!
>
> thanks for being out there
> Sandy
>
>> here are some problem pages:
>> http://www.claimanalytics.com/TEST3/services.shtml
>> http://www.claimanalytics.com/TEST3/contact.shtml
>> http://www.claimanalytics.com/TEST3/reserving.shtml

Hi Sandy

Well what about Firefox. Take a looker a the copyright down the bottom. On my 
1280by800 sr with a maximized screen the copyright is floating below the bottom 
menu links. One text size up destroys the header. The cause i the floated <p>. 
You have this style.

.banner p {
float : right;/* delete */
margin:0; /* so the margin doesn't collapse */
text-align:right; /* much easier than floating */
}

Now after text size up, the header stays intact. The copyright which is in a 
<span> would be better outside the list in a <p> clearing the list, but still 
contain with the .bottomnav. Note the <p> bottom margin will possibly disappear 
in IE since the container element has layout, so a bottom margin may be needed.

.bottomnav {
margin-top : 78px; /* this margin is just going up underneath the floats in FF 
*/
width : 770px; /* this has not got a closing ; but page validates regardless*/
}

The font size small on the body seems to have the same effect (IE font size 
bug) when using an em on the body. This would be better as a percentage. Even 
after all this there are gaps, larges spaces all over the page in both IE and 
FF after text sizing up.

Kind Regards, Alan <http://css-class.com/>

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to