[Theme: Bromine] How to change position of featured image ?

  • Hello everybody,
    I have a problem, when I post in my blog the featured image of post is on the top of title, I want that this image will be on the right side, text on the left side and the title on the top of the post.
    How I understand it’s written in content.php file … But i don’t understand how to change it.

    content.php:

    <?php
    /**
     * The default template for displaying content
     *
     * @package Bromine
     * @since Bromine 1.0.0
     */
    ?>
    <article id="post-<?php the_ID(); ?>" <?php post_class('bro-cf'); ?>>
        <header class="post-header">
            <div class="header-metas">
    
                <?php bro_post_format(); ?>
    
                <?php if( is_singular() ) { edit_post_link( __( 'Edit', 'bromine' ), '<span class="edit-link">', '</span>' ); } ?>
    
                <span class="post-date">
                    <time class="published" datetime="<?php echo get_the_time('c'); ?>"><a title="<?php _e( 'Permalink to: ', 'bromine' ); echo the_title(); ?>" href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a></time>
                </span>
    
            </div>
    
            <?php
                bro_display_thumbnails();
                if ( is_single() ) :
                    the_title( '<h1 class="post-title">', '</h1>' );
                else:
                    the_title( '<h1 class="post-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
                endif;
            ?>
    
        </header>
    
        <div class="post-content">
    
            <?php if( is_singular() ) :
    
                the_content();
                bro_content_nav();
    
                else:
    
                the_excerpt(); ?>
                <a class="read-more" href="<?php the_permalink(); ?>" title="<?php echo _e( 'Read more', 'bromine' ); ?>"><i class="g"></i><?php echo _e( 'Read more', 'bromine' ); ?></a>
    
            <?php endif; ?>
    
        </div>
    
        <?php if( is_single() ) : ?>
        <footer class="post-footer">
            <ul class="taxo-metas">
                <?php if( get_the_category() ) { ?><li class="category"><i class="gicn gicn-category"></i><?php the_category(' • '); ?></li><?php } ?>
    
                <li class="tag-links"><i class="gicn gicn-tag"></i><?php
                    $tags_list = get_the_tag_list( '', __( ' ', 'bromine' ) );
                    if ( $tags_list ) :
                        printf( __( '%1$s', 'bromine' ), $tags_list );
                    else :
                        _e( 'No tags', 'bromine' );
                    endif; ?>
                </li>
            </ul>
        </footer>
        <?php endif; ?>
    
    </article>

    content-gallery.php

    <?php
    /**
     * Gallery posts
     *
     * @package Bromine
     * @since Bromine 1.0.0
     */
    ?>
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <header class="post-header">
            <div class="header-metas">
    
                <?php bro_post_format(); ?>
    
                <?php if( is_singular() ) { edit_post_link( __( 'Edit', 'bromine' ), '<span class="edit-link">', '</span>' ); } ?>
    
                <span class="post-date">
                    <time class="published" datetime="<?php echo get_the_time('c'); ?>"><a title="<?php _e( 'Permalink to: ', 'bromine' ); echo the_title(); ?>" href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a></time>
                </span>
    
            </div>
    
            <?php
                bro_display_thumbnails();
                if ( is_single() ) :
                    the_title( '<h1 class="post-title">', '</h1>' );
                else:
                    the_title( '<h1 class="post-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
                endif;
            ?>
    
        </header>

    http://visualcocain.hostenko.com/

  • The topic ‘[Theme: Bromine] How to change position of featured image ?’ is closed to new replies.