Good Tool for Finding Where a Website is Hosted

Posted by Marty Dickinson on Oct 22, 2013

Usually I have to search by domain and then lookup the IP address of a hosting server, but this tool does it all in one swoop. Nice!

http://www.whoishostingthis.com

To find where your email is hosted: https://mxtoolbox.com/SuperTool.aspx?action=mx%3agmail.com


Code for Adding Skype Image and Relative Positioning Text to Image

Posted by Marty Dickinson on Oct 4, 2013

Here’s a quick and dirty way to show the skype icon on your website and then have SKYPE text to the right and centered.

<div class=”skype”>
<a href=”skype:YOURSKYPENAMEHERE?call”>
<img src=”<?php echo get_template_directory_uri(); ?>/images/skype_icon.png”
alt=”Contact YOUR SKYPE NAME HERE on Skype”/></a>
<a href=”skype:YOURSKYPENAMEHERE?call”><span style=’position:relative; top:-6px;’>SKYPE</span></a>
</div>