<?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 - Tag: bullet - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/bullet</link>
		<description>Support Forum - Tag: bullet - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 00:38:54 +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/tags/bullet" rel="self" type="application/rss+xml" />

		<item>
			<title>virayatcilik on "Bullets"</title>
			<link>http://www.kriesi.at/support/topic/bullets#post-103505</link>
			<pubDate>Thu, 28 Mar 2013 15:43:56 +0000</pubDate>
			<dc:creator>virayatcilik</dc:creator>
			<guid isPermaLink="false">103505@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you. Much appreciated. Worked like a charm..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Bullets"</title>
			<link>http://www.kriesi.at/support/topic/bullets#post-102977</link>
			<pubDate>Mon, 25 Mar 2013 17:33:12 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">102977@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;The widget doesn't have any special class for the thumbnail version so I targeted the ID for that widget. Add the following to the bottom of your style.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#incsub_event_upcoming-4 li a {
    background: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>virayatcilik on "Bullets"</title>
			<link>http://www.kriesi.at/support/topic/bullets#post-102951</link>
			<pubDate>Mon, 25 Mar 2013 14:33:05 +0000</pubDate>
			<dc:creator>virayatcilik</dc:creator>
			<guid isPermaLink="false">102951@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello;&#60;/p&#62;
&#60;p&#62;I have installed events+ plugin and used its widget to show upcomming events. I have instered two widgets. one without thums and one with thumbs. You may see the site: &#60;a href=&#34;http://www.delphiasailing.com/dysa&#34; rel=&#34;nofollow&#34;&#62;http://www.delphiasailing.com/dysa&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How can I remove bullet from the widget with thumbs?
&#60;/p&#62;</description>
		</item>
		<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>
		<item>
			<title>Nick on "A few issues need working out ASAP"</title>
			<link>http://www.kriesi.at/support/topic/a-few-issues-need-working-out-asap#post-89471</link>
			<pubDate>Wed, 26 Dec 2012 17:47:41 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89471@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Your are missing the &#38;lt;/html&#38;gt; , please check your footer.php&#60;/p&#62;
&#60;p&#62;There is something wrong with your 3rd portfolio item named 'functions' that is why it looks messed up in IE. The code duplicates into the parent node somehow. How are you displaying those 3 things (secrets, menus, functions on the lower half of the home page?)&#60;/p&#62;
&#60;p&#62;You are also using one-fourth and only have 3 items .. try using one-third. That's why things are jumping where they aren't supposed to, code is expecting to see 4 items, but you provided only 3 portfolio items.&#60;/p&#62;
&#60;p&#62;This is one of the lines giving you grief&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.fullwidth .one_fourth, .fullwidth .box_small {
width:210px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you need to be using .fullwidth .one_third . Then everything will fit.&#60;/p&#62;
&#60;p&#62;Add the code below to custom.css, and you will see in Chrome the images start showing how they are supposed to, and it becomes obvious that the 4th image is needed. The code below will also fix some of the IE problems, probably the 3rd image will fall into place, but 2nd image will be off.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .box_small {
overflow: initial;
font-size: 1.2em;
line-height: 1.7em;
margin-right: 33px;
}
#top .fullwidth .box_small {
width: 190px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "A few issues need working out ASAP"</title>
			<link>http://www.kriesi.at/support/topic/a-few-issues-need-working-out-asap#post-89469</link>
			<pubDate>Wed, 26 Dec 2012 17:02:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89469@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi wwarrior,&#60;/p&#62;
&#60;p&#62;There may be an issue with the plugin you are using to create those column shortcodes but I can't say for sure.&#60;/p&#62;
&#60;p&#62;I don't know issues you are having in IE so you would need to outline them specifically for us to be able to say if they are fixable or not.&#60;/p&#62;
&#60;p&#62;If you want to make text red, I believe you can just highlight it then select red via the visual editor buttons.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wwarrior on "A few issues need working out ASAP"</title>
			<link>http://www.kriesi.at/support/topic/a-few-issues-need-working-out-asap#post-89331</link>
			<pubDate>Sat, 22 Dec 2012 12:14:01 +0000</pubDate>
			<dc:creator>wwarrior</dc:creator>
			<guid isPermaLink="false">89331@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;no matter what i do i cant align them&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[wpcol_1half id=&#38;quot;&#38;quot; class=&#38;quot;&#38;quot; style=&#38;quot;disc&#38;quot;]&#38;lt;ul&#38;gt;
	&#38;lt;li&#38;gt;Breakfast&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Lunch&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Dinner&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Takeaway Menu&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Crave Coffee (phone orders taken)&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Events&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Corporate Lunches&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Business Breakfast for 2 to many&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;[/wpcol_1half]
[wpcol_1half_end id=&#38;quot;&#38;quot; class=&#38;quot;&#38;quot; style=&#38;quot;disc&#38;quot;]&#38;lt;ul&#38;gt;&#38;lt;li&#38;gt;Weddings&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Birthdays 21&#38;lt;sup&#38;gt;st&#38;lt;/sup&#38;gt;, 30&#38;lt;sup&#38;gt;th&#38;lt;/sup&#38;gt;, 40&#38;lt;sup&#38;gt;th&#38;lt;/sup&#38;gt;...90&#38;lt;sup&#38;gt;th&#38;lt;/sup&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Themed Dinners&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Office Parties&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Christmas Parties&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Special Events&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Home Catering&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;And More - Booking must be in advance&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;[/wpcol_1half_end]&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Is there anyway to correct my issue in IE?, Also what code would i add to the above to make the text red?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "A few issues need working out ASAP"</title>
			<link>http://www.kriesi.at/support/topic/a-few-issues-need-working-out-asap#post-88633</link>
			<pubDate>Mon, 17 Dec 2012 18:21:30 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">88633@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi wwarrior,&#60;/p&#62;
&#60;p&#62;The differences in the various browsers are just because of the way they each render css. Even between versions of the same browser you will get small differences (big differences when it comes to IE some times too).&#60;/p&#62;
&#60;p&#62;For the column issue, there is a break in between the two columns. You'll need to remove it in the visual editor to fix that.&#60;/p&#62;
&#60;p&#62;For the bullets, add the following to your main style.css at the very bottom of the file:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .entry ul li {
background: none;
list-style-type: disc;
list-style-position: inside;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wwarrior on "A few issues need working out ASAP"</title>
			<link>http://www.kriesi.at/support/topic/a-few-issues-need-working-out-asap#post-88523</link>
			<pubDate>Mon, 17 Dec 2012 00:44:06 +0000</pubDate>
			<dc:creator>wwarrior</dc:creator>
			<guid isPermaLink="false">88523@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Website: &#60;a href=&#34;http://secretcafe.websitewarrior.com.au&#34; rel=&#34;nofollow&#34;&#62;http://secretcafe.websitewarrior.com.au&#60;/a&#62;&#60;br /&#62;
Issue 1: The website is displaying differently on Internet Explorer, Chrome and Firefox. How do I make this universal?&#60;/p&#62;
&#60;p&#62;Issue 2: (&#60;a href=&#34;http://secretcafe.websitewarrior.com.au/our-secret/&#34; rel=&#34;nofollow&#34;&#62;http://secretcafe.websitewarrior.com.au/our-secret/&#60;/a&#62;) - The columns on the bullet points aren't aligning properly, The right hand column drops a line at the beginning. &#60;/p&#62;
&#60;p&#62;Issue 3: On the same page above I want bullet points not arrows, how can I correct this.&#60;/p&#62;
&#60;p&#62;Love the theme and thanks for any help provided.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-82048</link>
			<pubDate>Sat, 03 Nov 2012 02:22:33 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">82048@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi stirlingweb,&#60;/p&#62;
&#60;p&#62;No, don't enter the first code if you don't want to remove the bullets on the frontpage.&#60;/p&#62;
&#60;p&#62;Yes, you can put the second to style.css, if it doesn't work try to use this code instead:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#sidebar .widget_recent_entries li {
    list-style-type: disc !important;
}
#sidebar .widget_twitter li {
    list-style-type: disc !important;
    list-style-position: inside !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stirlingweb on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-82022</link>
			<pubDate>Fri, 02 Nov 2012 18:36:24 +0000</pubDate>
			<dc:creator>stirlingweb</dc:creator>
			<guid isPermaLink="false">82022@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I don't want to remove the bullets from the frontpage twitter and recent posts widgets so do i still have to enter the first code?&#60;/p&#62;
&#60;p&#62;Where do i enter the second code - which file?&#60;/p&#62;
&#60;p&#62;i tried adding both to style.css and it did not work.&#60;/p&#62;
&#60;p&#62;Please can you help?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-81445</link>
			<pubDate>Mon, 29 Oct 2012 16:56:24 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">81445@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi stirlingweb,&#60;/p&#62;
&#60;p&#62;Add this to your style.css at the very bottom to remove the bullets from the frontpage twitter and recent posts widgets:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#frontpage .widget_twitter li {
    list-style-type: none;
}
#frontpage .widget_recent_entries li {
    list-style-type: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And then for the sidebar:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#sidebar .widget_recent_entries li {
    list-style-type: disc;
}
#sidebar .widget_twitter li {
    list-style-type: disc;
    list-style-position: inside;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I've added the list style position inside to the twitter widget just to show you how to do that for them both if you want. Feel free to remove that line otherwise.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stirlingweb on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-81429</link>
			<pubDate>Mon, 29 Oct 2012 15:57:22 +0000</pubDate>
			<dc:creator>stirlingweb</dc:creator>
			<guid isPermaLink="false">81429@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm having the same problem. Bullets appear on the frontpage boxes for both latest tweets and recent posts but not on the sidebar. &#60;/p&#62;
&#60;p&#62;I want to add bullets to the twitter widget latest tweets on the sidebar and the recent posts widget on the sidebar. I tried the above with no luck. I am using Twitter Widget pro and Version 2 of your theme.&#60;/p&#62;
&#60;p&#62;The website I am working on is at &#60;a href=&#34;http://www.brucecrawfordmsp.org&#34; rel=&#34;nofollow&#34;&#62;http://www.brucecrawfordmsp.org&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rodney71 on "customize bullets locally"</title>
			<link>http://www.kriesi.at/support/topic/customize-bullets-locally#post-49277</link>
			<pubDate>Fri, 30 Mar 2012 23:56:20 +0000</pubDate>
			<dc:creator>rodney71</dc:creator>
			<guid isPermaLink="false">49277@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;thanks for the help. that works fantastic. a little bit of support goes a long way and I commend you for it!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "customize bullets locally"</title>
			<link>http://www.kriesi.at/support/topic/customize-bullets-locally#post-49123</link>
			<pubDate>Thu, 29 Mar 2012 20:50:00 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">49123@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi rodney71,&#60;/p&#62;
&#60;p&#62;Replace &#60;strong&#62;ul.none&#60;/strong&#62; with this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.entry-content ul.none li&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The reason being is the background image is applied to the li not ul.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rodney71 on "customize bullets locally"</title>
			<link>http://www.kriesi.at/support/topic/customize-bullets-locally#post-49118</link>
			<pubDate>Thu, 29 Mar 2012 20:34:41 +0000</pubDate>
			<dc:creator>rodney71</dc:creator>
			<guid isPermaLink="false">49118@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I'm trying to customize the styling of a bullet list (ul li) for a certain page to remove the bullet point (named list-icon.png) placed as a background image. I'd like to override the list styling only for certain pages. I had hoped by adding a class style to the Quick CSS portion of the theme I could override the list styling locally but it doesn't override, even if I apply the style controls inline.&#60;br /&#62;
This is what I added to Quick CSS:&#60;code&#62;ul.none {list-style-type:none; padding: 0px; background: none;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;then I try to call the class like so:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul class=&#38;quot;none&#38;quot; style=&#38;quot;background: none;&#38;quot;&#38;gt;
	&#38;lt;li&#38;gt;Item one&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Item two&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;Item three&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;How can I get the control I'm looking for without changing the global styles for bullet lists?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Twitter Applications formating problem with Hashtags and Links"</title>
			<link>http://www.kriesi.at/support/topic/twitter-applications-formating-problem-with-hashtags-and-links#post-34836</link>
			<pubDate>Wed, 14 Dec 2011 01:48:39 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">34836@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm not sure what's wrong since you're linking a page that has the issue in question completely removed. The only way I can provide specific instructions is by viewing the problem and live editing it. Could you put it in action again and let us know?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SteveYoung on "Twitter Applications formating problem with Hashtags and Links"</title>
			<link>http://www.kriesi.at/support/topic/twitter-applications-formating-problem-with-hashtags-and-links#post-34707</link>
			<pubDate>Mon, 12 Dec 2011 17:37:25 +0000</pubDate>
			<dc:creator>SteveYoung</dc:creator>
			<guid isPermaLink="false">34707@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;We use these applications with other websites (themes) without any issues.  It is exactly the same problem when using both Jetpack Twitter and Twitter Tools.  These are applied in a widget on our site.&#60;/p&#62;
&#60;p&#62;The hashtags and links take on the style format of a bullet.  How would I change that in the Newscast style sheet?&#60;/p&#62;
&#60;p&#62;You can see an example at the bottom right of this website &#60;a href=&#34;http://www.ZigPosterman.com&#34; rel=&#34;nofollow&#34;&#62;http://www.ZigPosterman.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I am not using hashtags (e.g. #Newscast) right now, because the formatting looks so bad.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18880</link>
			<pubDate>Wed, 11 May 2011 15:56:49 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">18880@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you. Please excuse my code typos :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>avalente2009 on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18870</link>
			<pubDate>Wed, 11 May 2011 12:45:37 +0000</pubDate>
			<dc:creator>avalente2009</dc:creator>
			<guid isPermaLink="false">18870@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Absolutely GREAT! Thank you soo much for your patience and time. I just need the Frontpage Box problem to be solved and I'm good to go! :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18866</link>
			<pubDate>Wed, 11 May 2011 11:20:25 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">18866@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes sorry - I corrected the code above. I'm not sure why I used &#34;bullet&#34; instead of &#34;disc&#34; xD. You can change the list style if you like though: &#60;a href=&#34;http://www.w3schools.com/CSS/pr_list-style-type.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.w3schools.com/CSS/pr_list-style-type.asp&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>avalente2009 on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18865</link>
			<pubDate>Wed, 11 May 2011 11:18:52 +0000</pubDate>
			<dc:creator>avalente2009</dc:creator>
			<guid isPermaLink="false">18865@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;#top #nav li ul ul {&#60;br /&#62;
	left:172px;&#60;br /&#62;
	top:0px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top #nav li:hover ul ul, #top #nav li:hover ul ul ul,#top  #nav li:hover ul ul ul ul{&#60;br /&#62;
  	display:none;&#60;br /&#62;
}&#60;br /&#62;
#top #nav li:hover ul, #top #nav li li:hover ul, #top #nav li li li:hover ul, #top #nav li li li li:hover ul{&#60;br /&#62;
	display:block;&#60;br /&#62;
}&#60;br /&#62;
#sidebar .tweets ul, #sidebar .tweets li{&#60;br /&#62;
list-style-type:bullets;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>avalente2009 on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18864</link>
			<pubDate>Wed, 11 May 2011 11:17:06 +0000</pubDate>
			<dc:creator>avalente2009</dc:creator>
			<guid isPermaLink="false">18864@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Dude,&#60;/p&#62;
&#60;p&#62;But still no change in the sidebar... :-(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18838</link>
			<pubDate>Wed, 11 May 2011 05:28:31 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">18838@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes sorry. I didn't read your post carefully enough. I corrected the instructions above :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>avalente2009 on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18813</link>
			<pubDate>Tue, 10 May 2011 19:57:59 +0000</pubDate>
			<dc:creator>avalente2009</dc:creator>
			<guid isPermaLink="false">18813@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude,&#60;/p&#62;
&#60;p&#62;I just realized that your code removed the bullets from the Frontpage Box1 Twitter widget, instead of adding the bullets to the Sidebar Everywhere Twitter widget. &#60;/p&#62;
&#60;p&#62;Any clue?&#60;/p&#62;
&#60;p&#62;Thx!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>avalente2009 on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18808</link>
			<pubDate>Tue, 10 May 2011 19:00:00 +0000</pubDate>
			<dc:creator>avalente2009</dc:creator>
			<guid isPermaLink="false">18808@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude!&#60;/p&#62;
&#60;p&#62;Thank you very much for your code, but it didn't work...&#60;/p&#62;
&#60;p&#62;Here is what the last lines of my style.css look like now, but the bullets still don't show when Twitter plugin is in the sidebar:&#60;/p&#62;
&#60;p&#62;}&#60;/p&#62;
&#60;p&#62;#top #nav li:hover ul ul, #top #nav li:hover ul ul ul,#top  #nav li:hover ul ul ul ul{&#60;br /&#62;
  	display:none;&#60;br /&#62;
}&#60;br /&#62;
#top #nav li:hover ul, #top #nav li li:hover ul, #top #nav li li li:hover ul, #top #nav li li li li:hover ul{&#60;br /&#62;
	display:block;&#60;br /&#62;
}&#60;br /&#62;
.tweets ul, .tweets li{&#60;br /&#62;
list-style-type:none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Any other idea how I could solve this?&#60;/p&#62;
&#60;p&#62;Thanks a lot for the quick answer by the way!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18711</link>
			<pubDate>Mon, 09 May 2011 04:59:55 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">18711@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
add following to style.css (at the very bottom):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#sidebar .tweets ul, #sidebar .tweets li{
list-style-type:disc;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>avalente2009 on "Twitter (jetpack) plugin not showing bullets on &#34;Sidebar Everywhere&#34;"</title>
			<link>http://www.kriesi.at/support/topic/twitter-jetpack-plugin-not-showing-bullets-on-sidebar-everywhere#post-18698</link>
			<pubDate>Sun, 08 May 2011 19:33:14 +0000</pubDate>
			<dc:creator>avalente2009</dc:creator>
			<guid isPermaLink="false">18698@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;First of all, thank you for the great product!&#60;/p&#62;
&#60;p&#62;I added the twitter widget on the Frontpage Box1 and Sidebar Everywhere. So far so good, BUT: on the Frontpage Box1 it shows the nice bullets for every new tweet, but it does not on the Sidebar Everywhere one :-(  Is there a way to make sure both look the same?&#60;/p&#62;
&#60;p&#62;Have a look at &#60;a href=&#34;http://www.mac-suisse.com&#34; rel=&#34;nofollow&#34;&#62;http://www.mac-suisse.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you in advance for your answer!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Newscast: Bulleted list insteads of lines"</title>
			<link>http://www.kriesi.at/support/topic/newscast-bulleted-list-insteads-of-lines#post-4163</link>
			<pubDate>Tue, 07 Sep 2010 06:41:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">4163@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help.&#60;/p&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
