Re: DNN 5.1.1 - Editor not picking up styles from DNNGeneral.css

  •  08-21-2009, 10:44 AM

    Re: DNN 5.1.1 - Editor not picking up styles from DNNGeneral.css

    Thanks Adam.  We're getting closer.  I made a change to this section to add the color because it was still gray.
     
    td,p,span,div,table
    {
        FONT-SIZE: 11px;
        FONT-FAMILY: "Trebuchet MS";    
        line-height:1.5;
       COLOR: #000000;
    }
     
     
    Now in Normal and Preview mode, it is picking-up the correct font and color - but the links are not displaying as per the DNNGeneral file:
     
    Here are the link styles from DNNGeneral.css:
     

    A:link  {
        text-decoration: none; 
        COLOR: #325a8b;
    }

    A:visited   {
         text-decoration: none; 
        COLOR: #325a8b;
    }

    A:hover {
         text-decoration: underline; 
         COLOR: #6cb43f;
    }

    A:active    {
         text-decoration: none; 
        COLOR: #325a8b;
    }

     
    Here is how it looks after inplemeting the change you sent:
     
     
    The text is in the correct font and color (I took this screenshot before making the change mentioned at the top of this post) and the link styles are wrong.
     
    ***************************
     
    Here is how the page looks after I save the content - note the black text, and style of the link.
     
     
     
     
View Complete Thread