<?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: Edit &#34;latest posts&#34; widget</title>
		<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget</link>
		<description>Support Forum - Topic: Edit &quot;latest posts&quot; widget</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 10:37:27 +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/edit-latest-posts-widget" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-55306</link>
			<pubDate>Wed, 09 May 2012 10:47:18 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">55306@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; You can hide the thumbnails with following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.newsbox .news-thumb{
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lotsdesign on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-54959</link>
			<pubDate>Mon, 07 May 2012 08:49:19 +0000</pubDate>
			<dc:creator>lotsdesign</dc:creator>
			<guid isPermaLink="false">54959@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Peter,&#60;/p&#62;
&#60;p&#62;I noticed that as well, but the layout we're after is something more looking lite &#34;recent posts&#34;, without pictures and such. Is the &#34;flashlight latest news&#34; widget editable somehow to make it look more like &#34;recent posts&#34;?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-54934</link>
			<pubDate>Mon, 07 May 2012 05:41:58 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">54934@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; The &#34;recent posts&#34; widget doesn't offer such an option but the &#34;Flaslight Latest News&#34; widget allows you to select one or more categories. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lotsdesign on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-54303</link>
			<pubDate>Wed, 02 May 2012 13:27:27 +0000</pubDate>
			<dc:creator>lotsdesign</dc:creator>
			<guid isPermaLink="false">54303@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Got another question regarding this, while talking about the &#34;recent entries widget&#34;. Can you set it to only show a specific category? For example if i have a category called News, where all our news updates are?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lotsdesign on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-54289</link>
			<pubDate>Wed, 02 May 2012 12:02:15 +0000</pubDate>
			<dc:creator>lotsdesign</dc:creator>
			<guid isPermaLink="false">54289@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Mya!&#60;/p&#62;
&#60;p&#62;Yes, the headline i want clickable is &#34;Senaste nytt&#34;, and i want it directed to the blog page.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-53944</link>
			<pubDate>Mon, 30 Apr 2012 14:42:36 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">53944@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi lotsdesign,&#60;/p&#62;
&#60;p&#62;You should be able to style the style the widget's appearance by adding this to your custom.css or Quick CSS.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* this styles the widget title */
.sidebar .widgettitle {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

/* this styles the overall list */
.sidebar .widget ul {
    list-style-position: outside;
    list-style-type: none;
}

/* this styles the list item */
.sidebar .widget li {
    background: none repeat scroll 0 0 transparent;
    margin: 0;
    padding: 0;
}

/* this styles the list a */
.sidebar .widget a {
    color: #F2036A;
    text-decoration: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Note: Changes will apply to every sidebar widget. If you to style the &#34;Latest Posts&#34; only then you would replace &#60;strong&#62;.widget&#60;/strong&#62; with &#60;strong&#62;.widget_recent_entries&#60;/strong&#62;.&#60;/p&#62;
&#60;p&#62;As far as your second question, the headline you mentioned is that &#34;Senaste Nytt&#34;?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lotsdesign on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-53922</link>
			<pubDate>Mon, 30 Apr 2012 12:30:43 +0000</pubDate>
			<dc:creator>lotsdesign</dc:creator>
			<guid isPermaLink="false">53922@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Also, i would like to make the headline for the widget clickable, so you're dirrected to the blog page when clicking on it.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lotsdesign on "Edit &#34;latest posts&#34; widget"</title>
			<link>http://www.kriesi.at/support/topic/edit-latest-posts-widget#post-53913</link>
			<pubDate>Mon, 30 Apr 2012 11:08:27 +0000</pubDate>
			<dc:creator>lotsdesign</dc:creator>
			<guid isPermaLink="false">53913@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;We got the &#34;latest posts&#34; widget on the left sidebar to display our five latest posts from the blog.&#60;br /&#62;
It dispalys the headlines, and some of them are longer and requires two lines of text.&#60;/p&#62;
&#60;p&#62;How do i edit this widget's apperance so i can get more space between each of the five posts?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.lotsdesign.se/wordpress&#34; rel=&#34;nofollow&#34;&#62;http://www.lotsdesign.se/wordpress&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
