<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: How to create own list style in CORONA?</title>
		<link>http://www.kriesi.at/support/topic/how-to-create-own-list-style-in-corona</link>
		<description>Support Forum - Topic: How to create own list style in CORONA?</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 16:02:03 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/how-to-create-own-list-style-in-corona" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "How to create own list style in CORONA?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-create-own-list-style-in-corona#post-99069</link>
			<pubDate>Fri, 01 Mar 2013 20:30:27 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">99069@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You are not using correct code to hit your classes, that's why you don't see it ... #squarelist ul {  ...  } Use Chrome Developer Tools, it is much better and easier to use then firebug and is more robust. Then open up custom.css file in the sources of chrom dev tools and just copy paste and move css around and you will see things change, this way you can try a whole bunch of different configurations.. much easier to hack out css that way.,&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;HTML&#38;gt;
&#38;lt;div id=&#38;quot;navcontainer&#38;quot;&#38;gt;
&#38;lt;ul id=&#38;quot;navlist&#38;quot;&#38;gt;
&#38;lt;li id=&#38;quot;active&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot; id=&#38;quot;current&#38;quot;&#38;gt;Item one&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item two&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item three&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item four&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item five&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;style type=&#38;quot;text/css&#38;quot;&#38;gt;
#navlist
{
margin-left: 0;
padding-left: 0;
list-style: none;
}

#navlist li
{
padding-left: 10px;
background-image: url(arrow.gif);
background-repeat: no-repeat;
background-position: 0 .5em;
}
&#38;lt;/style&#38;gt;
&#38;lt;/html&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Workflow in Dev Tools for this would be &#60;a href=&#34;http://i.imgur.com/R1TAHBv.png&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/R1TAHBv.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit2 on "How to create own list style in CORONA?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-create-own-list-style-in-corona#post-98973</link>
			<pubDate>Thu, 28 Feb 2013 23:49:38 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">98973@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;sorry for that simple, probably stupid question, but I don't get it my own list styles to work. I would like to create some list styles with different bullet types, without overwriting CORONA's own standard list style.&#60;/p&#62;
&#60;p&#62;I have these CSS:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#squarelist ul li {
    background-image: url(&#38;quot;http://xxx.de/wp-content/uploads/sites/2/2013/03/list1.png&#38;quot;);
    background-position: 0 3px;
    background-repeat: no-repeat;
    padding-left: 20px;
	list-style-position: outside;
    list-style-type: none;
    margin-left: 0px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and this in my post:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul id=&#38;quot;squarelist&#38;quot;&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item one&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item two&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item three&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item four&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Item five&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This shows me still the standard bullets instead of my own image (the image path is right):&#60;/p&#62;
&#60;p&#62;&#60;img src=&#34;http://i49.tinypic.com/2198eo6.jpg&#34; /&#62;&#60;/p&#62;
&#60;p&#62;When I check this with Firebug, then it uses always the CORONA standard list styles for lists and ignores my own.&#60;/p&#62;
&#60;p&#62;&#60;img src=&#34;http://i49.tinypic.com/qofw5v.jpg&#34; /&#62;&#60;/p&#62;
&#60;p&#62;Could you please tell me, how to successful have list styles with own bullet images in CORONA?&#60;/p&#62;
&#60;p&#62;Thanks a lot for any help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
