This would be the class controlling the social icons that your looking for in the the themes style sheet:
.banner-sns {
overflow: hidden;
margin: 10px auto;
text-align: center;
display: inline-block;
}
If you haven’t done so already, I would strongly advise you to first create and activate a child theme. With the child theme activated go to the WordPress dashboard, appearance, editor and add this edited css to the child themes style sheet. Or… you can add it to the themes General Options, Custom CSS field.
.banner-sns {
overflow: hidden;
margin: 10px auto;
text-align: center;
display: inline-block;
float:right;
}
I just added “float:right;” to the original…
Hope this helps you!