PDA

View Full Version : V9 to V10 CSS import mess up


JGLIGHTING
25-Apr-2010, 09:00 PM
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

#topnavbar {
}

To

#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

Golf Tee Warehouse
25-Apr-2010, 09:48 PM
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/actinic/topics/v9_to_v10_upgrade_css_layout_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:
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;
}

jont
26-Apr-2010, 08:22 PM
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