<?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: styling footer widgets in Propulsion</title>
		<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion</link>
		<description>Support Forum - Topic: styling footer widgets in Propulsion</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 08:01:40 +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/styling-footer-widgets-in-propulsion" rel="self" type="application/rss+xml" />

		<item>
			<title>susan_ideology on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-74347</link>
			<pubDate>Tue, 04 Sep 2012 15:56:02 +0000</pubDate>
			<dc:creator>susan_ideology</dc:creator>
			<guid isPermaLink="false">74347@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;brilliant!  Thanks Mya.  susan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-74224</link>
			<pubDate>Tue, 04 Sep 2012 01:04:43 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">74224@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Susan,&#60;/p&#62;
&#60;p&#62;Try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top #wrap_all #footer #text-15.widget a {
color: #FFFFFF !important;
font-family: Arial,sans- serif;
font-size: 11px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>susan_ideology on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-73800</link>
			<pubDate>Fri, 31 Aug 2012 13:16:58 +0000</pubDate>
			<dc:creator>susan_ideology</dc:creator>
			<guid isPermaLink="false">73800@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi yes, you should be able to view it now - for some reason i managed to blank the whole lot out when I was transferring some styles to custom.css last night.&#60;/p&#62;
&#60;p&#62;Many thanks, Susan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-73682</link>
			<pubDate>Thu, 30 Aug 2012 18:11:53 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">73682@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Susan,&#60;/p&#62;
&#60;p&#62;Can you fill in some content into the footer so we can take a look live? Leave the CSS from Mya intact as well so that we can see how its interacting s from the looks of it, it shouldn't have any issues.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>susan_ideology on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-73678</link>
			<pubDate>Thu, 30 Aug 2012 17:36:26 +0000</pubDate>
			<dc:creator>susan_ideology</dc:creator>
			<guid isPermaLink="false">73678@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Mya, the styling you gave me worked in that it gave me the #fff on hover.  but the text is still black when you don't hover over it.&#60;/p&#62;
&#60;p&#62;It does work by adding an &#34;a&#34; before the &#34;a:hover, but for some reason this also attached itself to the hover on my main navigation menu at the top and changed the hover color there to white too!  Not quite sure what happened there.&#60;/p&#62;
&#60;p&#62;Have you got any other ideas?&#60;/p&#62;
&#60;p&#62;Susan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-73667</link>
			<pubDate>Thu, 30 Aug 2012 16:32:07 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">73667@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Susan,&#60;/p&#62;
&#60;p&#62;What you'll need to do is find the ID of the widget DIV. You can do that by going to View Source for the page. So for example the first widget's ID is 15. To target that widget you would use something like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#footer.container_wrap.socket_border #text-15.widget {
    color: #FFFFFF !important;
    font-family: Arial,sans- serif;
    font-size: 11px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Or for links you may use this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top #wrap_all #footer #text-15.widget a:hover {
    color: #FFFFFF !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You may have to use !important out to the side on some declarations.&#60;/p&#62;
&#60;p&#62;Hope this helps!&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>susan_ideology on "styling footer widgets in Propulsion"</title>
			<link>http://www.kriesi.at/support/topic/styling-footer-widgets-in-propulsion#post-73524</link>
			<pubDate>Wed, 29 Aug 2012 18:02:34 +0000</pubDate>
			<dc:creator>susan_ideology</dc:creator>
			<guid isPermaLink="false">73524@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Am having some problems styling the footer widgets,  I have different text styles for different widgets.&#60;/p&#62;
&#60;p&#62;- first widget which contains a custom menu I would like to have the text in a larger font and in white, with the hover link white as well but no dotted lines;&#60;br /&#62;
- second widget I would like the first line of the text to be styled differently from the para underneath it. So accreditation in Arial #000 but the text underneath in Georgia #999&#60;/p&#62;
&#60;p&#62;Having looked at the style sheets I've tried various combinations to try to target these areas but to no avail!  Your help would be appreciated.&#60;/p&#62;
&#60;p&#62;Susan&#60;/p&#62;
&#60;p&#62;psIf it helps, here is a link to the site showing the footer as it is at the moment.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://s154267.gridserver.com/?page_id=410&#34; rel=&#34;nofollow&#34;&#62;http://s154267.gridserver.com/?page_id=410&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
