We added ‘widgets’ to Yosle today so that you can display your items on your own website or anywhere else that allows embeddable javascript. For basic information and the Widget Builder see the widget page.
The widgets are customizable via CSS on your site. There are a few classes you can style:
.yosleFeed{} /*container holding the feed widget*/
.yosleItem{} /*container holding the item widget*/
.yoslePrice{} /*any prices*/
.yosleLink{} /*any links*/
.yosleSubtitle{} /*the subtitle directly below the title*/
.yosleDescription{} /*the description (item widget only)*/
.yosleUsername{} /*the 'posted by x' text*/
Examples
Here is the CSS. For illustration purposes and general eye strain, each piece will get a different color.
.yosleFeed{border: 1px dashed #00F;} /*blue border*/
.yosleItem{border: 1px dashed #F00;} /*red border*/
.yoslePrice{font-weight: bold; color: #000;} /*black, bold*/
.yosleLink{color: #0a0;} /*Green*/
.yosleSubtitle{color: #F0F;} /*purple*/
.yosleDescription{color: #0FF;} /*cyan*/
.yosleUsername{color: #FF0;} /*yellow*/