CSS question
Last Post 01/30/2007 8:52 AM by markp. 4 Replies.
Author Messages
markp
Nuke Pro
Nuke Pro
Posts:93


--
01/25/2007 11:59 AM
    I am trying to create a company style sheet , with easily reconized font names.  When I look at the site through FireFox the fonts appear correctly, in IE they dont , any thoughts?

    www.peacemerchant.info/lpevents
    markp
    Nuke Pro
    Nuke Pro
    Posts:93


    --
    01/26/2007 10:03 AM

    /* GENERIC */
    lpxlbk
    {
        font-weight: bold;
     font-size: 21px;
     color: #000000;
    }
    lpxlor
    {
        font-weight: bold;
     font-size: 21px;
     color: #D54A21;
    }

    lplgbk
    {
        font-weight: bold;
     font-size: 16px;
     color: #000000;
    }

    lplgbl
    {
        font-weight: bold;
     font-size: 16px;
     color: #4A7BB5;
    }

    lp14 
    {
        font-size: 14px;
     font-style: normal;
     font-weight: bold;
       
    }

    lp12 
    {
        font-size: 12px;
     color: #000000;
     font-style: normal;
    }

    H5, DT 
    {
        }

    lpnormal
    {
        font-weight: bold;
     font-size: 11px;
     color: #000000;
    }

    LpeventHeader
    {
      
        font-weight: bold;
     font-size: 21px;
     color: #D54A21;

    }

    a.Normal
    {
        font-family: Verdana , Geneva , Arial , helvetica , sans-serif;
        font-size: 13px;
        color: #084294;
    }

     

    Above are the text styles that IE is not displaying correctly but Firefox does, any help?

     

     

    lynn
    Nuke Master
    Nuke Master
    Posts:276


    --
    01/26/2007 11:08 AM
    Hello Markup

    Is it just for the purpose of this post or have your forgotten to put the (.) before your class styles:
    lpxlbk (no .)

    .lpxlbk (with .)

    Lynn
    markp
    Nuke Pro
    Nuke Pro
    Posts:93


    --
    01/29/2007 9:24 AM

    Ok, I am new at this so:

    I tried it both ways.  I noticed that fonts (h1, h2, h3 etc.)in the existing css file did not have a period in front of them, so I did that first.  While they did not show up in the drop down box, if I added them via the html view they displayed correctly in FireFox, but not IE.  I then thought of the class solution, so I added a period in front of them , the problem is that they are not showing in the class dropdown box either.

     

    markp
    Nuke Pro
    Nuke Pro
    Posts:93


    --
    01/30/2007 8:52 AM
    Eureka I made them into a class again, and while they do not show in the class drop down box of the editor, they do work if I use the html tab and write the code. Thanks for making me try it again.


    ---