Hello. I can not align the text horizontally with social buttons. networks. The text "Share page:" is always slightly lower than the button itself. It is necessary that it was parallel.

<script type="text/javascript" src="http://vk.com/js/api/share.js?90" charset="windows-1251"></script> <div class="get-code-box social content" style="border:1px double;"> <div class="" style="display:inline-block;padding-bottom:15px;"> Поделиться страницей: </div> <div class="" style="display:inline-block;padding-top:15px;"> <script type="text/javascript"> <!-- document.write(VK.Share.button({ url: 'http://google.ru', title: '', noparse:'true'}, { type: 'button', text: 'Вконтакте' })); --> </script> </div> </div> 

1 answer 1

 .social{ text-align: center; border:1px double; } .social > div{ display:inline-block; vertical-align: middle; padding-top:15px; } 
 <script type="text/javascript" src="http://vk.com/js/api/share.js?90" charset="windows-1251"></script> <div class="social content"> <div> Поделиться страницей: </div> <div> <script type="text/javascript"> <!-- document.write(VK.Share.button({ url: 'http://google.ru', title: '', noparse:'true'}, { type: 'button', text: 'Вконтакте' })); --> </script> </div> </div>