<?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>Changes the appearence of my blog feed on my homepage &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/feed/</link>
		<description></description>
		<lastBuildDate>Tue, 04 Nov 2025 14:42:44 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-38432</guid>
					<title><![CDATA[Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-38432</link>
					<pubDate>Tue, 29 Apr 2014 07:57:32 +0000</pubDate>
					<dc:creator>mathew b</dc:creator>

					<description>
						<![CDATA[
						<p>Morning</p>
<p>Again can i reiterate how impressed i have been with this theme, but i would like to show the blog feed in a different style, from whats shown here <a href="http://www.ccfewordpress.co.uk" rel="nofollow">http://www.ccfewordpress.co.uk</a>. I would prefer just an image and a title as a link to my blog. I don&#8217;t want any hover over change. Please could you help.</p>
<p>Thanks in advance</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-38638</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-38638</link>
					<pubDate>Tue, 29 Apr 2014 20:08:23 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Matthew,</p>
<p>Thanks for writing in. Looks like your site is coming along nicely! I&#8217;m not quite sure what you mean by blog feed. Your blog appears to be empty at the moment. Could you elaborate a bit and perhaps point out where we should look?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-38864</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-38864</link>
					<pubDate>Wed, 30 Apr 2014 12:05:54 +0000</pubDate>
					<dc:creator>mathew b</dc:creator>

					<description>
						<![CDATA[
						<p>Ok no problem. I mean i want the blog links off the home page not to change to the rollover image when you go over them with a mouse.Also i would like the title of the blog post to be underneath if possible</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-39164</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-39164</link>
					<pubDate>Thu, 01 May 2014 02:38:14 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Mathew,</p>
<p>To move the title below the featured image, replicate this path in your child theme <strong>framework\views\global</strong> and create <strong>_index.php</strong> file and paste the code below.</p>
<pre>
&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_INDEX.PHP
// -----------------------------------------------------------------------------
// Includes the index output.
// =============================================================================

?&gt;

&lt;?php

if ( is_home() ) :
  $style     = get_theme_mod( 'x_blog_style' );
  $cols      = get_theme_mod( 'x_blog_masonry_columns' );
  $condition = is_home() &amp;&amp; $style == 'masonry';
elseif ( is_archive() ) :
  $style     = get_theme_mod( 'x_archive_style' );
  $cols      = get_theme_mod( 'x_archive_masonry_columns' );
  $condition = is_archive() &amp;&amp; $style == 'masonry';
elseif ( is_search() ) :
  $condition = false;
endif;

?&gt;

&lt;?php if ( $condition ) : ?&gt;

  &lt;script&gt;

    jQuery(document).ready(function($){

      var $container = $('#x-iso-container');

      $container.before('&lt;span id="x-isotope-loading"&gt;&lt;span&gt;');

      $(window).load(function(){
        $container.isotope({
          itemSelector   : '.x-iso-container &gt; .hentry',
          resizable      : true,
          filter         : '*',
          containerStyle : {
            overflow : 'hidden',
            position : 'relative'
          }
        });
        $('#x-isotope-loading').stop(true,true).fadeOut(300);
        $('#x-iso-container .hentry').each(function(i){
          $(this).delay(i*150).animate({'opacity':1},300);
        });
      });

      $(window).smartresize(function(){
        $container.isotope({  });
      });

    });

  &lt;/script&gt;

  &lt;div id="x-iso-container" class="x-iso-container x-iso-container-posts cols-&lt;?php echo $cols; ?&gt;"&gt;

    &lt;?php if ( have_posts() ) : ?&gt;
      &lt;?php while ( have_posts() ) : the_post(); ?&gt;

        &lt;article id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class(); ?&gt;&gt;
          &lt;div class="entry-wrap"&gt;
            &lt;?php if ( has_post_thumbnail() ) : ?&gt;
              &lt;div class="entry-featured"&gt;
                &lt;?php x_featured_image(); ?&gt;
              &lt;/div&gt;
            &lt;?php endif; ?&gt;
            &lt;header class="entry-header"&gt;
              &lt;?php if ( is_single() ) : ?&gt;
              &lt;h1 class="entry-title"&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
              &lt;?php else : ?&gt;
              &lt;h2 class="entry-title"&gt;
                <a>" title="&lt;?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?&gt;"&gt;&lt;?php the_title(); ?&gt;</a>
              &lt;/h2&gt;
              &lt;?php endif; ?&gt;
              &lt;?php x_renew_entry_meta(); ?&gt;
            &lt;/header&gt;
            &lt;?php // x_get_view( 'renew', '_excerpt-content' ); ?&gt;
          &lt;/div&gt;
          &lt;?php x_google_authorship_meta(); ?&gt;
        &lt;/article&gt; &lt;!-- end #post-&lt;?php the_ID(); ?&gt; --&gt;

      &lt;?php endwhile; ?&gt;
    &lt;?php else : ?&gt;
      &lt;?php x_get_view( 'global', '_content-none' ); ?&gt;
    &lt;?php endif; ?&gt;

  &lt;/div&gt;

&lt;?php else : ?&gt;

  &lt;?php if ( have_posts() ) : ?&gt;
    &lt;?php while ( have_posts() ) : the_post(); ?&gt;

      &lt;article id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class(); ?&gt;&gt;
        &lt;div class="entry-wrap"&gt;
          &lt;?php if ( has_post_thumbnail() ) : ?&gt;
            &lt;div class="entry-featured"&gt;
              &lt;?php x_featured_image(); ?&gt;
            &lt;/div&gt;
          &lt;?php endif; ?&gt;
          &lt;header class="entry-header"&gt;
            &lt;?php if ( is_single() ) : ?&gt;
            &lt;h1 class="entry-title"&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
            &lt;?php else : ?&gt;
            &lt;h2 class="entry-title"&gt;
              <a>" title="&lt;?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?&gt;"&gt;&lt;?php the_title(); ?&gt;</a>
            &lt;/h2&gt;
            &lt;?php endif; ?&gt;
            &lt;?php x_renew_entry_meta(); ?&gt;
          &lt;/header&gt;
          &lt;?php // x_get_view( 'renew', '_excerpt-content' ); ?&gt;
        &lt;/div&gt;
        &lt;?php x_google_authorship_meta(); ?&gt;
      &lt;/article&gt; &lt;!-- end #post-&lt;?php the_ID(); ?&gt; --&gt;

    &lt;?php endwhile; ?&gt;
  &lt;?php else : ?&gt;
    &lt;?php x_get_view( 'global', '_content-none' ); ?&gt;
  &lt;?php endif; ?&gt;

&lt;?php endif; ?&gt;

&lt;?php pagenavi(); ?&gt;
</pre>
<p>If you aren&#8217;t using a child theme, go to <strong>framework\views\global</strong> and modify <strong>_index.php</strong>. Replace the existing code with code above.</p>
<p>Then, in the Customizer &gt; Custom &gt; CSS, please add the code below.</p>
<pre>
/* Disable hover effects in featured image */
a.entry-thumb:hover img {
  opacity: 1;
  filter: alpha(opacity=15);
  zoom: 1; }
a.entry-thumb:hover:before {
  opacity: 0;
  filter: alpha(opacity=100);
  zoom: 1; }
/* Add spacing below feature image */
.entry-featured {
margin-bottom: 25px;
}
</pre>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-39283</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-39283</link>
					<pubDate>Thu, 01 May 2014 08:57:30 +0000</pubDate>
					<dc:creator>mathew b</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry the CSS didnt work, and the title is already below isn&#8217;t it, so i didnt need to put the index in. I meant to say i would like to remove the hover and the box which is around it.</p>
<p>Hopefully you can help, sorry to be a pain </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-39506</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-39506</link>
					<pubDate>Thu, 01 May 2014 22:20:13 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Mathew,</p>
<p>You could hide your recent posts hover by adding this css at your customizer&#8217;s custom css, or better at your child theme&#8217;s style.css</p>
<pre><code>.x-recent-posts a:hover .x-recent-posts-img, .x-portfolio-filters:hover {
background-color: transparent!important;
}
.x-recent-posts .format-standard .x-recent-posts-img:before {
content:&quot;&quot;!important;
}
.x-recent-posts a:hover .h-recent-posts {
color:#004d71!important;
}</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-53602</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-53602</link>
					<pubDate>Sat, 07 Jun 2014 15:27:03 +0000</pubDate>
					<dc:creator>Drew F</dc:creator>

					<description>
						<![CDATA[
						<p>Is there anywhere this type of customization is documented more fully?</p>
<p>Thanks,</p>
<p>Drew Falkman</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-53836</guid>
					<title><![CDATA[Reply To: Changes the appearence of my blog feed on my homepage]]></title>
					<link>https://theme.co/archive/forums/topic/changes-the-appearence-of-my-blog-feed-on-my-homepage/#post-53836</link>
					<pubDate>Sun, 08 Jun 2014 23:13:00 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Drew,</p>
<p>We could only give you few classes that can be customized, eg. <a href="http://theme.co/x/member/kb/css-class-index/" rel="nofollow">http://theme.co/x/member/kb/css-class-index/</a> and we  don&#8217;t provide full documentation as this require knowledge about CSS and it will be different from user to user. It is big so my advice is take some CSS/HTML5 tutorial or classes.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

