Unlike Artisteer 4.x Themler does not support content importing. It means that all content Sections, text, images, etc will be exported as a part of the skin and you will not be able to edit this content via DNN admin panel. All possible solutions require source code editing.

Here is the easiest solution:

  1. Add all desired sections to one of the templates (Home or Page). Edit them in the way you need. Complete the skin and export it without Themler.
    The exported skin will contain html code for Sections and all necessary css and images.
  2. Install skin.
  3. Go to the portal directory on the server by FTP
  4. Find the template file with Sections, for example, \Portals\_default\Skins\Untitled\home-template.ascx.
  5. Open this file and find the part with Sections. Each Section starts with <section class=" bd-section-1 bd-tagstyles..." d="section4" data-section-title="Four Columns"> and ends with </section> tags.
    NOTE: To be sure that you fount the proper section please check the data-section-title attribute. It contains the title of the Section that you can find on the ribbon in Themler:

    section-title.png

  6. Copy the whole Section from <section> to </section>

  7. Go to the DNN admin panel >> add HTML Module >> edit Content >> switch to HTML mode and insert the copied HTML of the Section. Then save.
    NOTE: If Section contains Image controls you will need to adjust the path of the images.
    For example, change image path:
    <img class="bd-imagelink-2 bd-imagestyles data-control-id-2138179" src="<%= SkinPath %>assets/images/fd0bd6ea9a29aebe340d1ba926f062bc_apple407122_640.jpg">
    to
    <img class="bd-imagelink-2 bd-imagestyles data-control-id-2138179" src="/Portals/_default/Skins/Untitled/assets/images/fd0bd6ea9a29aebe340d1ba926f062bc_apple407122_640.jpg">
  8. If the Section inside HTML Module looks ok you can now remove this section from the home-template.ascx file.

Unlike Artisteer 4.x Themler does not support content importing. It means that all content Sections, text, images, etc will be exported as a part of the skin and you will not be able to edit this content via DNN admin panel. All possible solutions require source code editing. Here is the easiest solution: 1. Add all desired sections to one of the templates (Home or Page). Edit them in the way you need. Complete the skin and export it without Themler. The exported skin will contain html code for Sections and all necessary css and images. 2. Install skin. 3. Go to the portal directory on the server by FTP 4. Find the template file with Sections, for example, `\Portals\_default\Skins\Untitled\home-template.ascx`. 5. Open this file and find the part with Sections. Each Section starts with `<section class=" bd-section-1 bd-tagstyles..." d="section4" data-section-title="Four Columns">` and ends with `</section>` tags. **NOTE:** To be sure that you fount the proper section please check the `data-section-title` attribute. It contains the title of the Section that you can find on the ribbon in Themler: !section-title.png! 6. Copy the whole Section from `<section>` to `</section>` 7. Go to the DNN admin panel >> add **HTML Module** >> edit Content >> switch to HTML mode and insert the copied HTML of the Section. Then save. **NOTE:** If Section contains **Image controls** you will need to adjust the path of the images. For example, change image path: `<img class="bd-imagelink-2 bd-imagestyles data-control-id-2138179" src="<%= SkinPath %>assets/images/fd0bd6ea9a29aebe340d1ba926f062bc_apple407122_640.jpg">` to `<img class="bd-imagelink-2 bd-imagestyles data-control-id-2138179" src="/Portals/_default/Skins/Untitled/assets/images/fd0bd6ea9a29aebe340d1ba926f062bc_apple407122_640.jpg">` 8. If the Section inside HTML Module looks ok you can now remove this section from the `home-template.ascx` file.