Hi, I have the following code, I'm working with Wordpress and the constructor called DIVI Builder in addition to the theme or template called DIVI, I have not managed to center the icons even with a DIV.
<div align="center">
<img src="http://logo.png" alt="Facebook"><br>
</div>
<ul class="et-social-icons">
<?php if ( 'on' === et_get_option( 'divi_show_facebook_icon', 'on' ) ) : ?>
<li class="et-social-icon et-social-facebook">
<img src="http://Facebook.png" alt="Facebook">
<span><?php esc_html_e( 'Facebook', 'Divi' ); ?></span>
</a>
</li>
<?php endif; ?>
<?php if ( 'on' === et_get_option( 'divi_show_instagram_icon', 'on' ) ) : ?>
<li class="et-social-icon et-social-twitter">
<img src="http://Instagram.png" alt="Instagram">
<span><?php esc_html_e( 'Twitter', 'Divi' ); ?></span>
</a>
</li>
<?php endif; ?>
<?php if ( 'on' === et_get_option( 'divi_show_twitter_icon', 'on' ) ) : ?>
<li class="et-social-icon et-social-twitter">
<img src="http://Twitter.png" alt="Twitter">
<span><?php esc_html_e( 'Twitter', 'Divi' ); ?></span>
</a>
</li>
<?php endif; ?>
</ul>
The logo of the company if it is centered, I just need to center the icons of social networks, because I focus on the pass to responsive
Any suggestions?