I have this site:
http://eventos.dac-proiect.ro/
I want to fix these two div sites so as to be in line as in the picture below
http://i58.tinypic.com/2n8ucuu.jpg
This is the HTML code:
<footer id="colophon" class="site-footer" role="contentinfo">
            <div class="social-list">
                   <ul>
                      <li><img src="http://eventos.dac-proiect.ro/wp-content/themes/eventos/images/gri1.png" alt="Smiley face" height="30" width="30"></li>
                      <li><img src="http://eventos.dac-proiect.ro/wp-content/themes/eventos/images/gri2.png" alt="Smiley face" height="30" width="30"></li>
                      <li><img src="http://eventos.dac-proiect.ro/wp-content/themes/eventos/images/gri3.png" alt="Smiley face" height="30" width="30"></li>
                      <li><img src="http://eventos.dac-proiect.ro/wp-content/themes/eventos/images/gri4.png" alt="Smiley face" height="30" width="30"></li>
                       <li><img src="http://eventos.dac-proiect.ro/wp-content/themes/eventos/images/gri5.png" alt="Smiley face" height="30" width="30"></li>
                   </ul>
            </div>
    <div class="site-info">
        <?php printf( __( ' © 2015 %1$s %2$s.', 'eventos' ), 'EVENTOS.', 'Toate drepturile rezervate' ); ?>
    </div><!-- .site-info -->
</footer><!-- #colophon -->
I tried to put display: inline-block div at the two sites, but unfortunately does not work ... and do not understand why
Can you please help me solve this problem?
Thanks in advance!