Announcement

Collapse
No announcement yet.

V9 to V10 CSS import mess up

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    V9 to V10 CSS import mess up

    Hi

    I have imported my V9 site in to V10 and I have just found out that some of the new V10 CSS (ie check out CSS) has deleted my CSS and it has change some of it too.

    Example

    Code:
    #topnavbar {
    }
    To

    Code:
    #topnavbar {
    }
    
    #topnavbar a.checkout-checkoutbg:link {
    	color: #000000;
    	text-decoration: none;
    }
    
    a.checkout-checkoutbg:visited {
    	color: <actinic:variable name="CheckoutBG" />;
    	text-decoration: none;
    }
    
    a.checkout-checkoutbg:hover {
    	color: <actinic:variable name="CheckoutBG" />;
    	text-decoration: underline;
    }
    This is not the only thing it done.

    Has anyone else notice this???

    Do any one have any idea of the best way to sort it out.

    I was thinking of using the standard CSS file and then just copy my CSS over from V9

    Elliott
    Elliott - Weybridge Lights

    www.weybridgelights.co.uk

    #2
    This sounds like a bug I reported in the V10 Beta testing and was noted as a bug, I didn't get time to do and testing in the 2nd Beta so was not sure if the bug had been fixed.

    For more details see this link where I reported the bug: http://www.getsatisfaction.com/actin...ayout_problems

    I found it quite easy to fix by searching for the extra css that had been added several times and deleted it.

    The code in question was:
    Code:
    a.checkout-checkoutbg:link { 
    color: ; 
    text-decoration: none; 
    } 
    
    a.checkout-checkoutbg:visited { 
    color: ; 
    text-decoration: none; 
    } 
    
    a.checkout-checkoutbg:hover { 
    color: ; 
    text-decoration: underline; 
    } 
    
    a.checkout-checkoutbg:active { 
    color: ; 
    text-decoration: underline; 
    } 
    
    a.checkout-textcolor:link { 
    color: ; 
    text-decoration: none; 
    } 
    
    a.checkout-textcolor:visited { 
    color: ; 
    text-decoration: none; 
    } 
    
    a.checkout-textcolor:hover { 
    color: ; 
    text-decoration: underline; 
    } 
    
    a.checkout-textcolor:active { 
    color: ; 
    text-decoration: underline; 
    }
    Darren Guppy
    Golf Tee Warehouse
    Golf Tees and Golf Accessories.

    Comment


      #3
      Another good one is place a classifier from one of the additional style sheets (as called at the bottom of the actinic.css) and then remove all the calls to import these additional sheets.

      If you click on a class to look up in the stylesheet Actinic looks up the old version in the removed stylesheet and not the new class copied in to the actinic.css


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment

      Working...
      X