<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Footer + Aesthetic &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/footer-aesthetic/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/footer-aesthetic/feed/</link>
		<description></description>
		<lastBuildDate>Thu, 25 Dec 2025 15:04:59 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-260287</guid>
					<title><![CDATA[Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-260287</link>
					<pubDate>Tue, 28 Apr 2015 07:59:53 +0000</pubDate>
					<dc:creator>mpieris</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Team,</p>
<p>I have few little questions:</p>
<p>1/ I tried to add some left &amp; right margin on my footer (widget + bottom) because my logo and text was at the extreme left and right without any space (didn&#8217;t look good).</p>
<p>I worked with a developer he added that on my Custom CSS</p>
<p>footer.x-colophon.bottom .x-colophon-content{<br />
float:left;<br />
  border-bottom: 0px;<br />
}</p>
<p>footer .x-container-fluid.max.width{<br />
border-top: 1px solid #eee;<br />
padding-top: 10px;<br />
}</p>
<p>#top footer .x-container-fluid.max.width{<br />
    border-top: 1px solid #eee !important;<br />
}</p>
<p>footer.x-colophon .widget {<br />
margin-top: 20px;</p>
<p>}</p>
<p>My <strong>issue here is that the margin are not clean</strong>, there are not at the same level than the footer see white arrow here: <a href="http://prntscr.com/6z27ey" rel="nofollow">http://prntscr.com/6z27ey</a></p>
<p>How can we fix that please?</p>
<p>2/ On the print screen <a href="http://prntscr.com/6z27ey" rel="nofollow">http://prntscr.com/6z27ey</a> you can see a big red arrow. I would like to know how can I <strong>change the text color on the footer menu and bottom footer text</strong>. Right now I have a dark grey and it&#8217;s pretty hard to see.</p>
<p>3/ Finally I would like to know how can I have <strong>less opacity on the post slider</strong>.</p>
<p>Thank you for you support and help.</p>
<p>Have a great day.</p>
<p>my website: <a href="http://www.surface85.com" rel="nofollow">http://www.surface85.com</a><br />
Wordpress + Theme = Last update</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-260336</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-260336</link>
					<pubDate>Tue, 28 Apr 2015 09:08:54 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Please add the following CSS under<strong> Customize -&gt; Custom -&gt; CSS</strong> :<br />
#1 </p>
<pre><code>#top footer .x-container-fluid.max.width {
  border: none !important;
}</code></pre>
<p>#2</p>
<pre><code>footer.x-colophon .widget ul li a{
  color: red;
}</code></pre>
<p>#3</p>
<pre><code>.x-post-slider-entry&gt;a{
  background-color: rgba(0,0,0,0.3);
}</code></pre>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-260337</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-260337</link>
					<pubDate>Tue, 28 Apr 2015 09:09:05 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in! You can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong> or in your child theme&#8217;s <strong>style.css</strong> file.</p>
<p><strong>#1</strong></p>
<pre><code>#top footer .x-container-fluid.max.width {
    border-top: none!important;
}

#top footer.x-colophon.bottom div.x-container-fluid.max.width {
    border-top: 1px solid #eeeeee!important;
}</code></pre>
<p><strong>#2</strong></p>
<pre><code>footer.x-colophon.top .widget ul li a, 
footer.x-colophon.top .widget ol li a{
    color: rgba(255, 255, 255, 0.8);
}

footer.x-colophon.top .widget ul li a:hover, 
footer.x-colophon.top .widget ol li a:hover {
    color: #991515;
}</code></pre>
<p><strong>#3</strong></p>
<pre><code>/* Change the last value from 0 - 1 (decimals in between) */
a.entry-thumb.featured:before {
    background-color: rgba(0,0,0,0.25);
}

a.entry-thumb.featured:hover:before {
    background-color: rgba(0,0,0,0.5);
}</code></pre>
<p>Note: On rgba color value the last decimal is the alpha channel or in other words transparency. 1 is equal to 100%, likewise 0 is 0%. in the one above I have raised each by 0.25 from original values.</p>
<p>Hope this helps – thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-263045</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-263045</link>
					<pubDate>Fri, 01 May 2015 12:35:25 +0000</pubDate>
					<dc:creator>mpieris</dc:creator>

					<description>
						<![CDATA[
						<p>Hi!</p>
<p>Thank you!<br />
1 and 2 worked perfectly I&#8217;m very happy about that 🙂</p>
<p>3: I don&#8217;t see any difference. I tried both code few times and change the numbers to see but nothing really changed. I just want the before hover slide image to have a ligther filter. This filter makes the pictures really dark. </p>
<p>Thank you so much for your time!!<br />
Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-263220</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-263220</link>
					<pubDate>Fri, 01 May 2015 18:03:44 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p><strong>#3:</strong> Please try this code instead:</p>
<pre><code>/* Change the last value from 0 - 1 (decimals in between) */
.x-post-slider-entry&gt;a {
  background-color: rgba(0,0,0,0.25);
}
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-265635</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-265635</link>
					<pubDate>Tue, 05 May 2015 08:00:27 +0000</pubDate>
					<dc:creator>mpieris</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, </p>
<p>For some reasons that I can&#8217;t understand all the css you gave me don&#8217;t work anymore.<br />
Plus I lost a white line that I had between the bottom footer and the top footer see: <a href="http://prntscr.com/6z27ey" rel="nofollow">http://prntscr.com/6z27ey</a></p>
<p>Now I don&#8217;t have this white line and my menu text color is back to this dark grey which is very hard to see (with the code you gave me it was white). See: <a href="http://www.surface85.com" rel="nofollow">http://www.surface85.com</a></p>
<p>Please can you help me.</p>
<p>On another note it doesn&#8217;t seem that the code you gave to reduce the opacity of the filter on top of the slider works. I tried, changed the number to see if it becomes darker or lighter but nothing change.</p>
<p>Tanks for your help.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-265716</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-265716</link>
					<pubDate>Tue, 05 May 2015 09:59:27 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Would you provide us with login credentials in private replay so we can take a closer look at you CSS codes.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-266105</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-266105</link>
					<pubDate>Tue, 05 May 2015 16:32:05 +0000</pubDate>
					<dc:creator>mpieris</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-266465</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-266465</link>
					<pubDate>Tue, 05 May 2015 22:29:15 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Upon checking on the site custom css. The last css rule does not have an <a href="http://prntscr.com/71zgo7" target="_blank" rel="nofollow">closing bracket</a>. This can void custom css underneath it.</p>
<p>Hope it helps, Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/footer-aesthetic/#post-266799</guid>
					<title><![CDATA[Reply To: Footer + Aesthetic]]></title>
					<link>https://theme.co/archive/forums/topic/footer-aesthetic/#post-266799</link>
					<pubDate>Wed, 06 May 2015 07:35:18 +0000</pubDate>
					<dc:creator>mpieris</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I just added it. Now the Css code you gave me worked but I still lost my white line that I added between the top footer and bottom. How can I add it back please?</p>
<p>The code you gave me to lighter the filter on the slider is great. How can I do the same on full size index featured image (it seems that they are also very dark).</p>
<p>Thank you for your time and patience.</p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

