When I view the basket or go to checkout my design looks wrong and there are no images showing.
This is probably because there is a missing 'BASE_HREF' variable in the overall layout. Check that you have the following in between your <head> and </head> tags:
Version 7 and earlier
Of your primary template: -
<Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>
and this in your Brochure template: -
<Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF" FORCED=NETQUOTEVAR:BASEHREFFORCED/>
Version 8 and later
Of your outer layout
<actinic:variable name="BaseHref" />
So it should look like:
If you use a different layout for your cart and checkout pages, also make sure that this variable is in those too.
PLEASE NOTE: You will also see this in some browsers if you remove the <title>...</title> tag.
This is probably because there is a missing 'BASE_HREF' variable in the overall layout. Check that you have the following in between your <head> and </head> tags:
Version 7 and earlier
Of your primary template: -
<Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>
and this in your Brochure template: -
<Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF" FORCED=NETQUOTEVAR:BASEHREFFORCED/>
Version 8 and later
Of your outer layout
<actinic:variable name="BaseHref" />
So it should look like:
If you use a different layout for your cart and checkout pages, also make sure that this variable is in those too.
PLEASE NOTE: You will also see this in some browsers if you remove the <title>...</title> tag.