I have a custom CSS class I would like to use in the Sellercore editor, is the possible?
- Sellercore asked 9 years ago
- You must login to post comments
Yes, there are three different ways of incorporating CSS into your templates with Sellercore.
The first is to use the default Sellercore CSS generator, this is the easiest for beginners or quick changes.
The second is to create style classes and add a <style> element the the HTML section of your template.
<style> .a-class-name { color:#0000ff; } .another-class { color:#ff0000; font-weight:bold; font-size:18px; } .another-class:hover { color:#ff00ff; font-weight:bold; } </style> <span class="a-class-name">This is a CSS class example</span> <div class="another-class">This is another CSS class example with hover</div>
The third option is to link you document to an external CSS style sheet file. Using this options allows you to make changes to all templates that are linked to this CSS.
<link href="http://yordomain.com/cssfile.css" rel="stylesheet" type="text/css">
- Sellercore answered 9 years ago
- You must login to post comments
Your Answer
Please login first to submit.