@mohsin786: Sorry for late reply. If css code cannot help you. You will need to create a child theme and customize the site as required. Let me know if you are comfortable with child theme customization. Please post in your site URL as well.
Regards,
Tikaram
Thread Starter
Mohsin
(@mohsin786)
Yes please let me know the customization process through a child theme
@mohsin786: You can easily create a child theme with the help of a plugin
Generate Child Theme
After creating the child theme you will need to add a folder named template-parts. Inside the folder create a file named content.php and add the following code and save. Activate the child theme and let me know if you have any more issues
<?php
/**
* Template part for displaying posts.
*
* @link https://codex.ww.wp.xz.cn/Template_Hierarchy
*
* @package University_Hub
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php $archive_layout = university_hub_get_option( 'archive_layout' ); ?>
<?php if ( has_post_thumbnail() ) : ?>
<?php
$archive_image = university_hub_get_option( 'archive_image' );
$archive_image_alignment = university_hub_get_option( 'archive_image_alignment' );
?>
<?php if ( 'disable' !== $archive_image ) : ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( esc_attr( $archive_image ), array( 'class' => 'align'. esc_attr( $archive_image_alignment ) ) ); ?></a>
<?php endif; ?>
<?php endif; ?>
<div class="entry-content-wrapper">
<?php university_hub_entry_meta_date(); ?>
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
</header><!-- .entry-header -->
<footer class="entry-footer">
<?php university_hub_entry_footer(); ?>
</footer><!-- .entry-footer -->
<div class="entry-content">
<?php if ( 'full' === $archive_layout ) : ?>
<?php
the_content( sprintf(
/* translators: %s: Name of current post. */
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'university-hub' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );
?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'university-hub' ),
'after' => '</div>',
) );
?>
<?php endif; ?>
</div><!-- .entry-content -->
</div><!-- .entry-content-wrapper -->
</article><!-- #post-## -->
Regards,
Tikaram