Log in

View Full Version : Differences between Fx and IE



inklanois
04-22-2009, 01:14 AM
Guys,

I'm learning how to utilize scripts. I have a site I play around with where I do some movie reviews and such. I have used a scrolling script near the top of the page that just has some information.

In FF, it loads up fine but not with BOLD and ITALICS and in IE it loads with BOLD and ITALICS but I cannot get it centered for the life of me.

The page is http://www.moviemood.net

Can anyone help? Once I get it figured out I will probably better know what to do with other neat little scripts.

bluewalrus
04-22-2009, 02:10 AM
I don't know about IE but try this for the bold and italic in your css for firefox.


#pscroller2{
margin: 0px;
width: 400px;
height: 25px;
border: 1px solid #000000;
padding: 1px;
color: #ffffff;
background-color:#0000FF;
text-align: center;
font-weight:bold;
font-style:italic;
}

inklanois
04-22-2009, 02:48 AM
blue...that did the trick for the FF formatting. Thanks.

Still working on the centering in IE.

bluewalrus
04-22-2009, 04:28 AM
is it the text or the whole block

Moshambi
04-22-2009, 06:17 AM
#pscroller2{
margin: 0px;
width: 400px;
height: 25px;
border: 1px solid #000000;
padding: 1px;
color: #ffffff;
background-color:#0000FF;
text-align: left;
font-weight:bold;
font-style:italic;
text-align: center;
}

amutha
04-22-2009, 09:29 AM
I've the same problem. now resolved. thanks..... :)

inklanois
04-22-2009, 09:03 PM
Thanks guys. But when I add text-align: center; in IE it puts the text way over to the right. In FF it is fine.

bluewalrus
04-22-2009, 09:20 PM
ie is reading something then that makes it think the page is wider than it is find that and it should be all set. for example if you page were 900px wide and ff read it as that it would position at 450 pixels. in ie if it read it as 1300 pixels it'd put it at 650 pixels 200 pixels more to the right so try and find something thats throwing it off there or write a conditional statement.