Designed for eBay Sellers, Sellercore offers custom eBay auction template editing, free eBay listing templates, online eBay picture & image hosting, eBay seller help, and more!

Can I use custom CSS classes in the Sellercore HTML editor?

0
0

I have a custom CSS class I would like to use in the Sellercore editor, is the possible?

  • You must to post comments
0
0

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">

 

 

 

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.