• Hello, how to add something at the right side of twenty twelve theme footer?
    For example I want add a this link
    <a href="http://google.sk">Copyright PATWIST</a>

    Snaphsot how it should look:: http://i47.tinypic.com/1tq721.png

    I have created footer.php in my child theme
    html code should be inserted somewhere here, but when i adding so it appears the line below of text Proudly powered by worpdress

    </div><!-- #main .wrapper -->
    	<footer id="colophon" role="contentinfo">
    		<div class="site-info">
    			<?php do_action( 'twentytwelve_credits' ); ?>
    			<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?>
    		</div><!-- .site-info -->
    	</footer><!-- #colophon -->
    </div><!-- #page -->

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try something like this:

    </div><!-- #main .wrapper -->
    	<footer id="colophon" role="contentinfo">
    		<div class="site-info">
    			<?php do_action( 'twentytwelve_credits' ); ?>
    			<div style="float:right;">
    				<a href="http://google.sk">Copyright PATWIST</a>
    			</div>
    			<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?>
    		</div><!-- .site-info -->
    	</footer><!-- #colophon -->
    </div><!-- #page -->
    Thread Starter patwist

    (@patwist)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twenty twelve footer link’ is closed to new replies.