Magento font icons usage and examples

Icons are a simple and effective way to draw users into the content of your website. They can help you structure content and separate different sections of the page. The primary goal of using icons should be to help the user find information on the page.


Icons

With icons you can quickly sum up what your text is about. Use an icon that encapsulates the point you are trying to get across in your paragraph. This will make the text more accessible to your readers.


Create an icon


example of a simple icon

You can place icons just about anywhere using simple markup. We are going to use an inline HTML element such as <span> and add appropriate classes to it. These are required classes: ic and the icon's name prefixed with ic-, for example ic-star. Here's an example of the code which will add a star icon:


<span class="ic ic-star"></span> example of a simple icon
			
  • If you change the font-size of the icon's container, the icon gets bigger. Same things goes for color, drop shadow, and anything else that gets inherited using CSS.


Icon size


ic-lg

ic-2x

ic-3x

ic-4x

To increase icon size relative to the font-size of the icon's container, use the following classes: ic-lg (increases the size of the icon by 33%), ic-2x, ic-3x, ic-4x, ic-5x, ic-6x, ic-7x or ic-8x.


<span class="ic ic-star"></span>
<span class="ic ic-star ic-lg"></span> ic-lg
<span class="ic ic-star ic-2x"></span> ic-2x
<span class="ic ic-star ic-3x"></span> ic-3x
<span class="ic ic-star ic-4x"></span> ic-4x
			
  • If your icons are getting chopped off on top and bottom,
    make sure you have sufficient line-height.

Inline styles


Now you can start having more fun with icons. By default all icons have the same color as text, but if you want to change the color of selected icon, you can do it with inline CSS styles. Add the style attribute to the icon element and specify the color.

You can add inline styles to icons the same way as to any other HTML elements in a HTML document. The style attribute can contain any CSS property, such as color, font-size, text-shadow etc.


<span class="ic ic-heart-o ic-3x"></span>
<span class="ic ic-heart-o ic-3x" style="color: #e91e8f;"></span>
<span class="ic ic-heart-o ic-3x" style="color: #95dc24;"></span>
			

Animated icon


Use the ic-spin class to get any icon to rotate.


<span class="ic ic-star ic-2x ic-spin" style="color: #be64e4;"></span>
<span class="ic ic-reload ic-2x ic-spin" style="color: #5bd2ec;"></span>
			


Examples of icons






Iconboxes



Simple iconbox


 example of an iconbox

To display an icon inside a box with background color (we call it an iconbox), add the ib class to the icon element. With the optional class ib-hover, the color of the iconbox will change on mouse hover over the iconbox.

Background color will be automatically added to the icon element. Make sure to leave the <span> tag empty – otherwise the contents of the tag will be displayed together with the icon and any additional space can dislocate the icon.


<span class="ic ic-star ib ib-hover"></span> &nbsp;example of an iconbox
			
  • The default background color and color of the icon can be configured in the admin panel:
    Theme Design > Colors > Iconbox

Iconbox size


 

To increase iconbox size, use the following classes: ib-size-l, ib-size-xl, ib-size-xxl, ib-size-xxxl.

The icon size is independent of the iconbox size and can be increased with classes which were described earlier. For example, add class ic-lg to make the icon a little bit bigger.


<span class="ic ic-heart-o ib ib-hover"></span> &nbsp; 
<span class="ic ic-heart-o ic-lg ib ib-hover ib-size-l"></span> 
<span class="ic ic-heart-o ic-lg ib ib-hover ib-size-xl"></span> 
<span class="ic ic-heart-o ic-2x ib ib-hover ib-size-xxl"></span> 
<span class="ic ic-heart-o ic-3x ib ib-hover ib-size-xxxl"></span> 
			

Iconbox shape


To change the shape of the iconbox, use one of the following classes: ib-circle, ib-rounded, ib-square. By default the iconbox is always circular.


<span class="ic ic-star ic-lg ib ib-hover ib-size-l"></span> 
<span class="ic ic-star ic-lg ib ib-hover ib-size-l ib-rounded"></span> 
<span class="ic ic-star ic-lg ib ib-hover ib-size-l ib-square"></span> 
			

Iconbox effects


To add eye-catching hover effects to the iconbox, use one of the following combinations of classes. Note that in each case the combination consists of two classes:

  • ib-ef-1 ib-ef-1a
  • ib-ef-1 ib-ef-1b
  • ib-ef-2 ib-ef-2a
  • ib-ef-2 ib-ef-2b
  • ib-ef-3 ib-ef-3a
  • ib-ef-3 ib-ef-3b

<span class="ic ic-plane ic-lg ib ib-size-l ib-ef-1 ib-ef-1a"></span> 
<span class="ic ic-plane ic-lg ib ib-size-l ib-ef-1 ib-ef-1b"></span> 
<span class="ic ic-plane ic-lg ib ib-size-l ib-ef-2 ib-ef-2a"></span> 
<span class="ic ic-plane ic-lg ib ib-size-l ib-ef-2 ib-ef-2b"></span> 
<span class="ic ic-plane ic-lg ib ib-size-l ib-ef-3 ib-ef-3a"></span> 
<span class="ic ic-plane ic-lg ib ib-size-l ib-ef-3 ib-ef-3b"></span> 
			


Examples of iconboxes






Blocks of text with icon

Icons can help you structure content and separate different sections of the page. The primary goal of using icons should be to help the user find information on the page and with icons you can quickly sum up what your text is about. For example, when you build lists, instead of using standard bullets, you can use icons to draw attention to paragraphs and other blocks of content.


Simple block with icon


Heading Example

This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks. Icons are an effective way to...



To create a simple block of text with an icon, wrap your text inside a <div> element with the feature class. Here's a minimal example:


<div class="feature">
	<span class="left ic ic-star ic-2x" style="color: #5bd2ec;"></span>
	<h4>Heading Example</h4>
	<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks. Icons are an effective way to...</p>
</div>
			

If you add left or right class to the icon, the icon will be taken from the normal flow and placed along the left or right side of its container, and text will wrap around it.


Indented block


Heading Example

This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.



To display a block with indentation on the left side, add the indent class to the block element:

To increase the size of the indentation, use the following classes together with the indent class: indent-size-l, indent-size-xl, indent-size-xxl, indent-size-xxxl.


<div class="feature feature-icon-hover indent">
	<span class="left ic ic-star ic-2x" style="color: #de2666;"></span>
	<h4>Heading Example</h4>
	<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
</div>
			

Block with iconbox and hover effect


Heading Example

This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.



To change the background color of the iconbox on mouse hover over the entire block, add the feature-icon-hover class to the block element.

If you increase the iconbox size (by adding a class such as ib-size-xl), you will also need to add corresponding class (in this case: indent-size-xl) to the block element. It will adjust the size of the indentation.


<div class="feature feature-icon-hover indent indent-size-xl">
	<span class="left ic ic-star ic-lg ib ib-size-xl"></span>
	<h4>Heading Example</h4>
	<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
</div>
			
  • The default background color and color of the icon can be configured in the admin panel:
    Theme Design > Colors > Iconbox

More complex example


Above heading

Heading Example

Text below heading

This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.

1

Lorem ipsum dolor sit, consectetur adipiscing elit.

2

Lid est laborum et dolorum fuga et harum quidem.

3

Seq et perspser iciatis unde omnis iste nautis.

Example of another text paragraph inside a block. Icons are an effective way to draw users into the content of your store.

Read more...


Here's another, more complex example with additional headings and nested blocks. To change the background color of the iconbox you can use inline styles. Add the style attribute to the iconbox element and specify the background color.


<div class="feature indent indent-size-xl">
	<span class="left ic ic-home ic-lg ib ib-size-xl" style="background-color: #ffb13e;"></span>
	<h6 class="above-heading">Above heading</h6>
	<h4>Heading Example</h4>
	<h6 class="below-heading">Text below heading</h6>
	<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
	<div class="feature feature-icon-hover indent">
		<span class="ic ic-char ib">1</span>
		<p>Lorem ipsum dolor sit, consectetur adipiscing elit.</p>
	</div>
	<div class="feature feature-icon-hover indent">
		<span class="ic ic-char ib">2</span>
		<p>Lid est laborum et dolorum fuga et harum quidem.</p>
	</div>
	<div class="feature feature-icon-hover indent">
		<span class="ic ic-char ib">3</span>
		<p>Seq et perspser iciatis unde omnis iste nautis.</p>
	</div>
	<p>Example of another text paragraph inside a block. Icons are an effective way to draw users into the content of your store.</p>
	<a href="#">Read more...</a>
</div>
			

Centered block


Heading Example

This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.



To align elements of the block to the center, use the centered class.


<div class="feature centered">
	<span class="ic ic-lightbulb ic-2x ib ib-size-xl" style="background-color: #bf78dd;"></span>
	<h4>Heading Example</h4>
	<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
</div>
			


Font Awesome icons

Font Awesome is a font and icon toolkit based on CSS. It offers a collection of more than 600 vector icons which can be easily customized (the same as other font icons available in the theme).


Basic Font Awesome icons


Use the fa class and the icon's name with an inline HTML element span. Here's an example of the code which will create a flag icon:


<span class="fa fa-flag fa-3x" style="color: #1b926c;"></span>
			

Use Font Awesome icons with other icon classes


Heading Example

This is a short paragraph of sample text inside a block.



You can use Font Awesome icons together with other icon classes described in this document. Here's an example of an iconbox element (the ib class) with Font Awesome icon inside a block


<div class="feature feature-icon-hover indent indent-size-l">
	<span class="ic ic-2x ib ib-size-l left fa fa-flag" style="background-color: #71d1b3;"></span>
	<h4>Heading Example</h4>
	<p>This is a short paragraph of sample text inside a block.</p>
</div>
			


Examples of block with icon


Unlimited Colors

You have never seen so many options! Change colors of dozens of elements, apply textures, upload background images...

Read more...

Responsive Layout

Ultimo can be displayed on any screen. It is based on fluid grid system. If screen is resized, layout will be automatically adjusted...

Read more...

Mega Menu

Two styles: wide mega menu or classic drop-down menu. You can add any custom content (images, text, HTML) to any category in the catalog...

Read more...

Font Icons

Font icons give you more control over the visual appearance of the icons. Add anywhere you want and customize to your needs...

Read more...

Easy to Customize

Use as a starting point for your custom projects. Create multiple child themes (theme variants) with ease...

Read more...

50+ CMS Blocks

You can use content placeholders to display custom content in almost every part of the store. Import sample CMS blocks from the demo...

Read more...


Examples of block with iconbox


Unlimited Colors

You have never seen so many options! Change colors of dozens of elements, apply textures, upload background images...

Read more...

Responsive Layout

Ultimo can be displayed on any screen. It is based on fluid grid system. If screen is resized, layout will be automatically adjusted...

Read more...

Mega Menu

Two styles: wide mega menu or classic drop-down menu. You can add any custom content (images, text, HTML) to any category in the catalog...

Read more...

Font Icons

Font icons give you more control over the visual appearance of the icons. Add anywhere you want and customize to your needs...

Read more...

Easy to Customize

Use as a starting point for your custom projects. Create multiple child themes (theme variants) with ease...

Read more...

50+ CMS Blocks

You can use content placeholders to display custom content in almost every part of the store. Import sample CMS blocks from the demo...

Read more...


Block with iconbox + iconbox effects


The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...


Paragraph - with and without indentation


The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

The Secondary Heading

Sample Title

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...

Read more...

Sample Title

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...

Read more...

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...

Read more...

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...

Read more...


Paragraph - indentation adjusted to iconbox size


The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis...

Read more...

The Secondary Heading

Sample Title

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis...

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis...

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis...

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...

The Secondary Heading

Sample Title

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur...

Read more...


Block with headings, iconboxes and nested paragraphs


The Secondary Heading

Feature Title Example

Text below heading

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Sinlgle line of text, short paragraph.

1

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis, nullam ornare.

2

Lid est laborum et dolorum fuga. Et harum quidem rerum facilis est et expeditasi distinctio nam libero eligendi.

3

Sed ut perspser iciatis unde omnis iste natus error sit voluptatem accusantium doloremque laste dolores sadips.

4

Et harum quidem rerum facilis est et expeditasi distinctio. Nam libero tempore, nobis est optio cumque

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

The Secondary Heading

Feature Title Example

Text below heading

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Sinlgle line of text, short paragraph.

1

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis, nullam ornare.

2

Lid est laborum et dolorum fuga. Et harum quidem rerum facilis est et expeditasi distinctio nam libero eligendi.

3

Sed ut perspser iciatis unde omnis iste natus error sit voluptatem accusantium doloremque laste dolores sadips.

4

Et harum quidem rerum facilis est et expeditasi distinctio. Nam libero tempore, nobis est optio cumque

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit



Blocks - separated with border


Banner
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
Banner
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
Banner
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
Banner
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit

Read more...
The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

The Secondary Heading

Sample Title

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...

The Secondary Heading

Feature Title Example

Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...

Read more...


Iconbox - centered


Unlimited Colors

You have never seen so many options! Change colors of dozens of elements, apply textures, upload background images...

Read more...

Responsive Layout

Ultimo can be displayed on any screen. It is based on fluid grid system. If screen is resized, layout will be automatically adjusted...

Read more...

Mega Menu

Two styles: wide mega menu or classic drop-down menu. You can add any custom content (images, text, HTML) to any category in the catalog...

Read more...
Datenschutzerklärung 1. Anwendungsbereich Diese Datenschutzerklärung klärt Sie über die Art, den Umfang und die Zwecke der Erhebung und Verwendung personenbezogener Daten auf der Webseite www.dirk-stange.de (im Folgenden „Webseite“) durch die WST-Dirk Stange Werbeatelier GmbH, Theodorstraße 41h, 22761 Hamburg (im Folgenden „wir“ oder „uns“) auf. Wir sind die verantwortliche Stelle für sämtliche personenbezogenen Daten, die auf der Webseite erhoben werden, es sei denn, diese Datenschutzerklärung enthält abweichende Angaben. 2. Personenbezogenen Daten Personenbezogene Daten sind Informationen, mit deren Hilfe eine Person bestimmbar ist, also Angaben, die zurück zu einer Person verfolgt werden können. Dazu gehört typischerweise der Name, die E-Mail-Adresse oder die Telefonnummer. Zudem sind aber auch rein technische Daten, die einer Person zugeordnet werden können, als personenbezogene Daten anzusehen. 3. Automatische Erhebung von Zugriffsdaten/Server-Logfiles Wir erheben bei jedem Zugriff auf die Webseite automatisch eine Reihe von technischen Daten, bei denen es sich um personenbezogene Daten handelt. Diese sind: • Die IP-Adresse des Nutzers • Name der abgerufenen Website bzw. Datei • Datum und Uhrzeit des Zugriffs • übertragene Datenmenge • Meldung über erfolgreichen Abruf • Browser-Typ und Version • Betriebssystem des Nutzers • verwendetes Endgerät des Nutzers, inklusive MAC-Adresse • Referrer-URL (die zuvor besuchte Seite) Diese Daten werden nicht mit anderen personenbezogenen Daten, die Sie aktiv im Rahmen der Webseite angeben, zusammengeführt. Die Server-Logfiles mit den oben genannten Daten werden automatisch nach 14 Tagen gelöscht. Wir behalten uns vor, die Server-Logfiles länger zu speichern, wenn Tatsachen vorliegen, welche die Annahme eines unzulässigen Zugriffs (wie etwa der Versuch eines Hackings oder einer so genannten DOS-Attacke) nahelegen. 4. Was ist eine IP-Adresse Jedem Gerät (z.B. Smartphone, Tablet, PC), das mit dem Internet verbunden ist, wird eine IP-Adresse zugewiesen. Welche IP-Adresse dies ist, hängt davon ab, über welchen Internetzugang Ihr Endgerät aktuell mit dem Internet verbunden ist. Es kann sich dabei um die IP-Adresse handeln, die Ihnen Ihr Internetprovider zugeteilt hat, etwa wenn Sie zu Hause über Ihr W-Lan mit dem Internet verbunden sind. Es kann sich aber auch um eine IP-Adresse handeln, die Ihnen Ihr Mobilfunkprovider zugeteilt hat oder um die IP-Adresse eines Anbieters eines öffentlichen oder privaten W-Lans oder anderen Internetzugangs. In ihrer derzeit geläufigsten Form (IPv4) besteht die IP-Adresse aus vier durch Punkte getrennte Zifferblöcken. Zumeist werden Sie als privater Nutzer keine gleichbleibende IP-Adresse benutzen, da Ihnen diese von Ihrem Provider nur vorübergehend zugewiesen wird (so genannte „dynamische IP-Adresse“). Bei einer dauerhaft zugeordneten IP-Adresse (so genannte „statische IP-Adresse“) ist eine eindeutige Zuordnung der Nutzerdaten über dieses Merkmal im Prinzip möglich. Außer zum Zwecke der Verfolgung unzulässiger Zugriffe auf unser Internetangebot verwenden wir diese Daten grundsätzlich nicht personenbezogen, sondern werten lediglich auf anonymisierter Basis aus, welche unserer Webseiten favorisiert werden, wie viele Zugriffe täglich erfolgen und ähnliches. Unsere Webseite unterstützt bereits die neuen IPv6-Adressen. Wenn Sie bereits über eine IPv6-Adresse verfügen, sollten Sie zudem noch folgendes wissen: Die IPv6 Adresse besteht aus acht Viererblöcken. Die ersten vier Blöcke werden, ebenso wie bei der gesamten IPv4 Adresse, typischerweise bei privaten Anwendern dynamisch vergeben. Die letzten vier Blöcke einer IPv6-Adresse (sog. „Interface-Identifier“) werden allerdings durch das Endgerät bestimmt, welches Sie zum Browsen auf der Webseite verwenden. Soweit dies in Ihrem Betriebssystem nicht anders eingestellt ist, wird hierzu die sog. MAC-Adresse verwendet. Bei der MAC-Adresse handelt es sich um eine Art Seriennummer, die für jedes IP-fähige Gerät weltweit einmalig vergeben wird. Wir speichern daher die letzten vier Blöcke Ihrer IPv6-Adresse nicht. Generell empfehlen wir Ihnen, an Ihrem Endgerät die sog. „Privacy Extensions“ zu aktivieren, um die letzten vier Blöcke Ihrer IPv6-Adresse besser zu anonymisieren. Die meisten gängigen Betriebssysteme verfügen über eine „Privacy Extensions“-Funktion, die allerdings in manchen Fällen werksmäßig nicht voreingestellt ist. 5. Nutzerprofile Im Rahmen der Erstellung eines Benutzerkontos für unseren Online-Shop werden Sie aufgefordert eine Reihe an personenbezogenen Daten einzugeben. Diese Daten speichern wir, um die mit Ihnen geschlossenen Verträge über die Lieferung von Waren durchzuführen. Sie können die Daten stets unter der Rubrik „Benutzerkonto“ einsehen, ändern und löschen. Es ist Ihnen auch jederzeit möglich, das gesamte Benutzerkonto zu löschen. 6. Verwendung Ihrer Daten für die Zusendung von Werbung Wir werden Ihre personenbezogenen Daten nicht für die Zusendung von Werbung an Ihre E-Mail-Adresse oder ihre postalische Adresse verwenden, es sei denn Sie haben dem ausdrücklich zugestimmt. Zudem geben wir ihre Daten auch nicht an Dritte weiter, es sei denn, es liegt eine ausdrückliche Einwilligungserklärung von Ihnen vor. 7. Kontaktaufnahme Bei der Kontaktaufnahme mit uns (zum Beispiel per Kontaktformular oder E-Mail) werden die Angaben des Nutzers zwecks Bearbeitung der Anfrage sowie für den Fall, dass Anschlussfragen entstehen, gespeichert. 8. Cookies Cookies sind kleine Textdateien, welche bei dem Aufruf unserer Webseite auf Ihrem Endgerät durch den jeweils verwendeten Browser gespeichert werden. Einzelne Dienste einer Webseite können Sie auf diese Weise „erkennen“ und sich „merken“, welche Einstellungen Sie vorgenommen haben. Dies dient zum einem der Benutzerfreundlichkeit von Websites und damit den Nutzern (z.B. Speicherung von Login-Daten). Zum anderen dienen Cookies dazu, statistische Daten der Website-Nutzung zu erfassen und die so gewonnenen Daten zu Analyse- und Werbezwecken zu nutzen. Einige Cookies werden automatisch wieder von Ihrem Endgerät gelöscht, sobald Sie die Webseite wieder verlassen (sogenanntes Session-Cookie). Andere Cookies werden für einen bestimmten Zeitraum gespeichert, der jeweils zwei Jahre nicht übersteigt (Persistent-Cookies). Zudem setzen wir auch so genannte Third-Party-Cookies ein, die von Dritten verwaltet werden, um bestimmte Dienste anzubieten. Sie können auf den Einsatz der Cookies Einfluss nehmen. Die meisten Browser verfügen über eine Option, mit der das Speichern von Cookies eingeschränkt oder komplett verhindert wird. Allerdings wird darauf hingewiesen, dass die Nutzung und insbesondere der Nutzungskomfort ohne Cookies eingeschränkt werden. 9. Änderungen, Berichtigungen und Aktualisierungen Sie haben das Recht über die personenbezogenen Daten, die über Sie gespeichert wurden, auf Antrag unentgeltlich Auskunft zu erhalten. Zusätzlich haben Sie das Recht auf Berichtigung unrichtiger Daten, Sperrung und Löschung Ihrer personenbezogenen Daten, soweit dem keine gesetzliche Aufbewahrungspflicht entgegensteht. Sie können Sich hierzu jederzeit an kontakt[at]dirk-stange.de wenden. 10. Aufbewahrung von Daten Wir speichern personenbezogene Daten nur so lange, wie es nötig ist, um die Dienstleistungen auszuführen, die Sie gewünscht oder zu denen Sie Ihre Einwilligung erteilt haben, sofern keine anderslautenden gesetzlichen Verpflichtungen bestehen. Aufbewahrungspflichten, die uns zur Aufbewahrung von Daten verpflichten, ergeben sich aus Vorschriften der Rechnungslegung (§ 257 HGB) und aus steuerrechtlichen Vorschriften (§ 147 AO sowie § 14b UStG). Gemäß diesen Vorschriften sind geschäftliche Kommunikation, geschlossene Verträge und Buchungsbelege bis zu 10 Jahren aufzubewahren. Soweit wir diese Daten nicht mehr zur Durchführung der Dienstleistungen für Sie benötigen, werden die Daten gesperrt. Dies bedeutet, dass die Daten dann nur noch für Zwecke der Rechnungslegung und für Steuerzwecke verwendet werden dürfen. 11. Kontaktdaten/Datenschutzbeauftragter Die Kontaktdaten der WST-Dirk Stange Werbeatelier GmbH und der gesetzlichen Vertreter der WST-Dirk Stange Werbeatelier GmbH erhalten sie aus unsrem Impressum. Für eine Kontaktaufnahme zum Datenschutzbeauftragten per E-Mail schreiben Sie bitte an kontakt[at]dirk-stange.de 12. Rechtsgrundlagen für die Datenverarbeitung Wir stützen die Verarbeitung von Log-Files und die statistische Analyse der Nutzung unsere Webseite mithilfe von Google-Analytics auf Art. 6 Abs. 1 lit. f DS-GVO. Nach dieser Norm dürfen personenbezogene Daten verarbeitet werden, soweit der Verarbeiter hieran ein legitimes Interesse hat. Bezüglich der Erhebung von log Files besteht unser legitimes Interesse an der Möglichkeit, durch die Log-Files Fehler und eventuelle unberechtigte Zugriffe („Hacking“) nachvollziehen zu können. Die Zusendung eines Newsletters und weiterer Werbemaßnahmen stützen sich auf die Rechtsgrundlage aus Art. 6 Abs. 1 lit. a DS-GVO. Demnach dürfen personenbezogene Daten auf Basis einer Einwilligungserklärung verarbeitet werden. Im Übrigen werden personenbezogene Daten gemäß Art. 6 lit. b auf dieser Webseite nur verarbeitet, soweit dies für die Erfüllung eines Vertrages mit Ihnen notwendig ist. 13. Recht auf „Datenportabilität“ Wir weisen darauf hin, dass wir nach der DS-GVO verpflichtet sind, sämtliche Daten, die Sie uns aktiv auf dieser Webseite übergeben haben (insbesondere die Daten, die Sie im Rahmen der Erstellung Ihres Nutzerkontos eingegeben haben) von uns in einem gängigen Datenbankformat zurückerhalten. Wenn Sie dies wünschen, schreiben Sie uns an: kontakt[at]dirk-stange.de 14. Hinweis auf Recht zur Beschwerde bei einer Datenschutzaufsichtsbehörde Wir weisen Sie darauf hin, dass Sie jederzeit das Recht haben, sich bei einer Datenschutzaufsichtsbehörde über uns zu beschweren. Der Hamburgische Beauftragte für Datenschutz und Informationsfreiheit Klosterwall 6 (Blo ck C), 20095 Hamburg Tel.: (040) 4 28 54 - 40 40 E-Fax: (040) 4 279 - 11811 E-Mail: mailbox[at]datenschutz.hamburg.de Bei Fragen wenden Sie sich bitte an: Dirk Stange imac[at]dirk-stange.eu Tel.: (040) 89 27 37