twentyeleven child: footer text left and right formats differently
-
Hi
I have a twentyeleven child theme – here https://bric-consultancy.com/
I want to have the signature in the footer (#site-generator) in 2 parts, aligned left and aligned right. This is the code I have in the footer.php:
<footer id="colophon" role="contentinfo"> <div id="site-info"> <?php do_action( 'twentyeleven_credits' ); ?> <a href="<?php echo esc_url( __( 'https://www.bric-consultancy.com/', '' ) ); ?>" title="<?php esc_attr_e( 'BRIC Consultancy', '' ); ?>" rel="generator"><?php printf( __( '? 2012 BRIC Consultancy |', '' ), 'BRIC Consultancy' ); ?></a> <a href="mailto:[email protected]" style="color:#F2DA8E">[email protected]</a> </div> <div id="site-generator"> <?php do_action( 'twentyeleven_credits' ); ?> <a href="<?php echo esc_url( __( 'https://www.sparklynx.be/', '' ) ); ?>" title="<?php esc_attr_e( 'Sparklynx', '' ); ?>" rel="generator"><?php printf( __( 'development & design:', '' ), 'development & design:' ); ?></a> <a href="https://www.sparklynx.be" style="color:#F2DA8E">Sparklynx</a> </div> </footer>
but I can’t seem to figure out how to get both the #site-generator and the #site-info to be formatted the same way completely. What is not working is to get the text on the left to underline as you hover over it, like the text on the right. I suspect it has to do with the fact that I added a new element #site-info
I’ve searched for this for days… Any pointers would be much appreciated! Thanks.[Also, for the experts: when you look at this site, would you say it would be more worth it to just create a theme from scratch by converting html to WP, or would customizing Twentyeleven still be more efficient and faster in your opinion? I’m hesitating to teach myself to create new themes but not sure how complicated it will be to learn compared to fiddling with child themes. Thanks for any advice!]
- The topic ‘twentyeleven child: footer text left and right formats differently’ is closed to new replies.