Need to arrange position of social network icon

Hello,
in the contact section I had to remove many social icons, so I got left only the facebook one…
Now in the PC resolution there is a huge space left between the text and the icon…
is there anything we could to resolve?
See pic attached:
if you want to check yourself:

http://daumma.org

thanks!

Hello there,

I hope you are doing well today.

I removed the login credentials and added them here ins this private message for safety reasons:

username: support
password: WelcomeSupport98$u

Best Regards,
Support

Hello there,

You can use the following CSS code to move the icon by going to Appearance > Customize > Additional CSS and pasting it there.


/*Move social icon*/
#contact-us .section-content .contact-us-social {
    float: left;
    position: relative;
    right: 492px;
}

Best Regards,
Support

Thanks a lot Support!
that works fine however when loading the page in a mobile phone the icon disappear…

Hello there,

Remove the previous CSS and add this instead:


/*Move social icon*/
@media only screen and (min-width: 700px) {
#contact-us .section-content .contact-us-social {
    float: left;
    position: relative;
    right: 492px;
}
}

Let me know how this works.

Best Regards,
Support

works like a charm, THANK YOU!!!

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support