Results 1 to 8 of 8

Thread: Differences between Fx and IE

  1. #1
    Join Date
    Apr 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Differences between Fx and IE

    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.

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    I don't know about IE but try this for the bold and italic in your css for firefox.

    Code:
    #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;
    }
    Last edited by Snookerman; 04-22-2009 at 06:13 AM. Reason: added [code] tags

  3. #3
    Join Date
    Apr 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    blue...that did the trick for the FF formatting. Thanks.

    Still working on the centering in IE.

  4. #4
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    is it the text or the whole block

  5. #5
    Join Date
    Nov 2007
    Location
    USA
    Posts
    170
    Thanks
    8
    Thanked 22 Times in 22 Posts

    Default

    Code:
    #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;
    }
    What is obvious to you might not be to another.


    My Site

  6. #6
    Join Date
    Apr 2009
    Location
    India
    Posts
    41
    Thanks
    0
    Thanked 4 Times in 4 Posts

    Default

    I've the same problem. now resolved. thanks.....

  7. #7
    Join Date
    Apr 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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.

  8. #8
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    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.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •