Book a call

Fill out the form and we will call you back as soon as possible

Emergency situation

In case of emergencies or breakdowns, you can send an SMS to our emergency hotline

On-call phone (SMS only)

+45 29 70 15 95

Send an SMS with the following information:

  • Your name and webshop
  • Description of the problem
  • Your callback phone number

Notes: This service is only for critical situations where your webshop is down or has serious problems. For regular support, please use our normal support channels.

Link to stylesheet etc.

How to link to your stylesheets in your theme

Læsetid: ca. 1-2 minutter

When you link to your stylesheets or javascript it is important that you use the <{$theme_url}> variable to get the correct address.

If you use slashes in the address on your products or landing pages etc. you will experience problems with loading a stylesheet if you just link via

<link rel="stylesheet" type="text/css" href="css/style.css" />

Because if you are on http://example.com/bluser/t-shirt your stylesheet will not be loaded and your page will not look correct.

That's why you need to use:

<link rel="stylesheet" type="text/css" href="<{$theme_url}>/css/style.css" />