Merhaba arkadaşlar.
Benim ingilizce sitemde anasayfaya girdiğinizde göreceksiniz öne çıkarılmış görsel oldukça büyük aynı zamanda post da büyük tabiki.Ben onları küçültüp iki konu yanyana gelecek şekilde alt alta sıralanmasını istiyorum fakat dün geceden beri uğraşıyorum yapamadım.

Sizce bu sorunu hangi kodla düzeltebilirim?

Ek olarak siteye tasarım açısından önerebileceğiniz başka birşey varmı?


style.css


loop-image.php

<?php

/**

 * The template for displaying image post formats.

 * 

 * @package Standard

 * @since 3.0

 */

?>

<?php /* Image Loop */ ?>



<div id="post-<?php the_ID(); ?>" <?php post_class( 'post format-image' ); ?>>



	<?php if ( '' != get_the_post_thumbnail() ) { ?>

		<div class="post-format-image clearfix">

			<a class="thumbnail-link fademe" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'standard' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_post_thumbnail( 'post-format-image' );	?></a>

		</div> <!-- /.thumbnail -->

	<?php }  // end if ?> 



	<div id="content-<?php the_ID(); ?>" class="entry-content clearfix">

		<?php if( ( is_category() || is_archive() || is_home() ) && has_excerpt() ) { ?>

			<?php the_excerpt( ); ?>

			<a href="<?php echo get_permalink(); ?>"><?php _e( 'Devamını Oku...', 'standard' ); ?></a>

		<?php } else { ?>

			<?php the_content( __( 'Devamını Oku...', 'standard' ) ); ?>

		<?php } // end if/else ?>

		<?php 

			wp_link_pages( 

				array( 

					'before' 	=> '<div class="page-link"><span>' . __( 'Pages:', 'standard' ) . '</span>', 

					'after' 	=> '</div>' 

				) 

			); 

		?>

	</div><!-- /.entry-content -->

	

	<div class="post-meta clearfix">



			<div class="meta-date-cat-tags pull-left">

			

				<?php if( is_multi_author() ) { ?>

					<span class="the-author"><?php _e( ' Posted by ', 'standard' ); ?><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php echo get_the_author_meta( 'display_name' ); ?>"><?php echo the_author_meta( 'display_name' ); ?></a></span>

					<span class="the-time"><?php _e( ' on ', 'standard' ); echo get_the_time( get_option( 'date_format' ) ); ?></span>

				<?php } else { ?>

					<?php printf( '<span class="the-time">' . __( 'Posted on %1$s', 'standard' ) . '</span>', get_the_time( get_option( 'date_format' ) ) ); ?>

				<?php } // end if ?>

			

				<?php $category_list = get_the_category_list( __( ', ', 'standard' ) ); ?>

				<?php if( $category_list ) { ?>

					<?php printf( '<span class="the-category">' . __( 'In %1$s', 'standard' ) . '</span>', $category_list ); ?>

				<?php } // end if ?>

				

				<?php $tag_list = get_the_tag_list( '', __( ', ', 'standard' ) ); ?>

				<?php if( $tag_list ) { ?>

					<?php printf( '<span class="the-tags">' . __( '%1$s', 'standard' ) . '</span>', $tag_list ); ?>

				<?php } // end if ?>

				

			</div><!-- /meta-date-cat-tags -->

			

			<div class="meta-comment-link pull-right">

				<a class="pull-right post-link" href="<?php the_permalink(); ?>" title="<?php esc_attr_e( 'permalink ', 'standard' ); ?>"><img src="<?php echo esc_url( get_template_directory_uri() . '/images/icn-permalink.png' ); ?>" alt="<?php esc_attr_e( 'permalink ', 'standard' ); ?>" /></a>

				<?php if ( '' != get_post_format() ) { ?>

					<span class="the-comment-link"><?php comments_popup_link( __( 'Leave a comment', 'standard' ), __( '1 Comment', 'standard' ), __( '% Comments', 'standard' ), '', ''); ?></span>

				<?php } // end if ?>

			</div><!-- /meta-comment-link -->



	</div><!-- /.post-meta -->

	

</div> <!-- /#post- -->
index.php
<?php

/**

 * The template for starting The Loop and rendering general content features such as the breadcrumbs, pagination, and sidebars. Uses

 * get_template_part to render the appropriate template based on the current post's format.

 * 

 * @package Standard

 * @since 3.0

 */

?>

<?php get_header(); ?>

<?php $presentation_options = get_option( 'standard_theme_presentation_options' ); ?>

<div id="wrapper">

	<div class="container">

 		<div class="row">

 	

			<?php if ( 'left_sidebar_layout' == $presentation_options['layout'] ) { ?>

				<?php get_sidebar(); ?>

			<?php } // end if ?>



			<div id="main" class="<?php echo 'full_width_layout' == $presentation_options['layout'] ? 'span12 fullwidth' : 'span8'; ?> clearfix" role="main">

			 <?php if ( function_exists( "easingsliderlite" ) ) { easingsliderlite(); } ?>

				<?php get_template_part( 'breadcrumbs' ); ?>

		

				<?php if ( is_archive() ) { ?>                 

	                <div id="archive-page-title"> 

	                    <h3> 

	                        <?php _e( 'Archives For ', 'standard' ); ?>

	                        <?php if( standard_is_date_archive() ) { ?>

	                        	<?php echo standard_get_date_archive_label(); ?>

	                    	<?php } elseif ( is_author() ) { ?>

	                    		<?php $author_data = get_userdata( get_query_var('author') ); ?>

	                        	<?php echo $author_data->display_name; ?>

	                        <?php } elseif ( '' == single_tag_title( '', false ) ) { ?> 

	                            <?php echo get_cat_name( get_query_var( 'cat' ) ); ?> 

	                        <?php } else { ?> 

	                            <?php echo single_tag_title() ?> 

	                        <?php } // end if/else ?> 

	                    </h3>

	            <?php if( '' != category_description() ) { ?>

	                       <?php echo category_description(); ?>

	                    <?php } // end if ?> 

	                </div> 

	            <?php } // end if ?> 

				

				<?php if ( have_posts() ) { ?>

			

					<?php while ( have_posts() ) { ?>

						<?php the_post(); ?>

						<?php get_template_part( 'loop', get_post_format() ); ?>

					<?php } // end while ?>

	

					<?php get_template_part( 'pagination' ); ?>

					

				<?php } else { ?>

			

					<article id="post-0" class="post no-results not-found">

						<header class="entry-header">

							<h1 class="entry-title"><?php _e( 'Page or resource not found', 'standard' ); ?></h1>

						</header><!-- .entry-header -->

						<div class="entry-content>

							<p><?php _e( 'No results were found.', 'standard' ); ?></p>

							<?php get_search_form(); ?>

						</div><!-- .entry-content -->

					</article><!-- #post-0 -->

					

				<?php } // end if/else ?>

			</div><!-- /#main -->

		

			<?php if ( 'right_sidebar_layout' == $presentation_options['layout'] ) { ?>

				<?php get_sidebar(); ?>

			<?php } // end if ?>



		</div><!-- /row -->

	</div><!-- /container -->

</div> <!-- /#wrapper -->



<?php get_footer(); ?>