<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<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>WordPress.com Forums &#187; Topic: How to modify the bullet style?</title>
		<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style</link>
		<description>WordPress.com Forums &#187; Topic: How to modify the bullet style?</description>
		<language>en</language>
		<pubDate>Wed, 22 May 2013 12:01:02 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/how-to-modify-the-bullet-style" rel="self" type="application/rss+xml" />

		<item>
			<title>nishikk on "How to modify the bullet style?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style#post-1039884</link>
			<pubDate>Sun, 14 Oct 2012 10:16:43 +0000</pubDate>
			<dc:creator>nishikk</dc:creator>
			<guid isPermaLink="false">1039884@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks designsimply. That worked like a charm. You rock!</p>
<p>And thanks also for the suggestion for the header. It makes a big difference :)
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How to modify the bullet style?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style#post-1039678</link>
			<pubDate>Sat, 13 Oct 2012 23:04:46 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1039678@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Your header might look a little nicer with some padding too. Try adding this:</p>
<pre><code>#header .wrap {
	padding: 0 2%;
	border: 1px solid red;
}

#header .widget-area {
	width: 420px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "How to modify the bullet style?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style#post-1039665</link>
			<pubDate>Sat, 13 Oct 2012 22:58:47 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1039665@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>What you have is very close! Also, really good work finding the existing rules in the CSS, that was very helpful.</p>
<p>Try starting with this instead:</p>
<pre><code>.archive-page ul li,
.entry-content ul li {
	list-style-type: none;
	background: url(&#039;http://nishitak.files.wordpress.com/2012/10/bullet.jpg&#039;) no-repeat;
	padding: 0 0 0 25px;
	margin: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>nishikk on "How to modify the bullet style?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style#post-1038176</link>
			<pubDate>Fri, 12 Oct 2012 12:37:01 +0000</pubDate>
			<dc:creator>nishikk</dc:creator>
			<guid isPermaLink="false">1038176@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi Zandyring,</p>
<p>Thanks very much for the help. I uploaded the image to the media library and grabbed the url.</p>
<p>I then added the code you suggested as follows:</p>
<p>ul li {background-image: url(<a href="http://nishitak.files.wordpress.com/2012/10/bullet.jpg" rel="nofollow">http://nishitak.files.wordpress.com/2012/10/bullet.jpg</a>) no-repeat;}</p>
<p>but I don't see any change in the bullet.</p>
<p>I then looked at the original Luscious css and see this section for ordered/unordered lists:</p>
<p>/* Ordered / Unordered Lists<br />
------------------------------------------------------------ */</p>
<p>.entry-content ol,<br />
.entry-content ul,<br />
#comments .comment-content ol,<br />
#comments .comment-content ul {<br />
	margin: 0;<br />
	padding: 0 0 15px;<br />
}</p>
<p>.entry-content ol {<br />
	margin: 0;<br />
}</p>
<p>.archive-page ul li,<br />
.entry-content ul li,<br />
#comments .comment-content ul li {<br />
	list-style-type: square;<br />
	margin: 0 0 0 30px;<br />
	padding: 0;<br />
}</p>
<p>.entry-content ol li,<br />
#comments .comment-content ol li {<br />
	margin: 0 0 0 35px;<br />
}</p>
<p>.archive-page ul ul,<br />
.entry-content ol ol,<br />
.entry-content ul ul {<br />
	padding: 0;<br />
}</p>
<p>but I have no idea if I have to modify this as well. Can you help? I am quite new to CSS.</p>
<p>Thanks
</p>
]]></description>
					</item>
		<item>
			<title>zandyring on "How to modify the bullet style?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style#post-1037370</link>
			<pubDate>Thu, 11 Oct 2012 12:20:50 +0000</pubDate>
			<dc:creator>zandyring</dc:creator>
			<guid isPermaLink="false">1037370@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Well, one way to do this would be to upload an image of what you want the bullet to look like to your media gallery and grab that URL. Then, use CSS to call that image for the bullets.</p>
<p>In the below example, I'm using a fake URL of <a href="http://www.yourimage.jpg" rel="nofollow">http://www.yourimage.jpg</a> - your URL will be longer and have more slashes.</p>
<p><code>ul li {background-image: url(www.yourimage.jpg) no-repeat;}</code></p>
<p>You may need to do more tweaking than shown here, but you can get started with this.</p>
<p>Good luck!<br />
-Z
</p>
]]></description>
					</item>
		<item>
			<title>nishikk on "How to modify the bullet style?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-modify-the-bullet-style#post-1037363</link>
			<pubDate>Thu, 11 Oct 2012 12:07:19 +0000</pubDate>
			<dc:creator>nishikk</dc:creator>
			<guid isPermaLink="false">1037363@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I have the custom CSS upgrade for my blog that uses the Luscious theme, and I want to customize the look of the bullets. Instead of the generic bullet, I want to use something like the stars that appear in the Vigilance theme (just an example). Is there a way to customize the look of the bullets using CSS?
</p>
]]></description>
					</item>

	</channel>
</rss>
