Skip to content

Commit

Permalink
Added nice facebook photo for links
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Connelly committed Feb 11, 2012
1 parent 47b5520 commit d04db0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions wp-content/themes/lighthouse/header.php
Expand Up @@ -241,9 +241,6 @@
</style>';
?>

<script type="text/javascript" src="http://use.typekit.com/mfx6agw.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>

</head>
<body <?php body_class($bodyclass); ?>>

Expand Down
6 changes: 3 additions & 3 deletions wp-content/themes/lighthouse/single-property.php
Expand Up @@ -284,10 +284,10 @@ function () {

<?php
$location = $address . ' ' . $city . ' ' . $state . ' ' . $zipcode;
$addressLocation = str_replace(' ', '+', $location);
$addressLocation = urlencode(str_replace(' ', '+', $location));
?>

<a href="http://maps.google.com/maps?q=<?php echo $addressLocation;?>">
<a href="http://maps.google.com/maps?q=<?php echo $addressLocation;?>" target="googlemaps">
<address>
<ul>
<?php echo '<li>' . $address . '</li>';?>
Expand All @@ -297,7 +297,7 @@ function () {
</address>
</a>

<a href="http://maps.google.com/maps?q=<?php echo $addressLocation;?>">
<a href="http://maps.google.com/maps?q=<?php echo $addressLocation;?>" target="googlemaps">
<img
src="http://maps.googleapis.com/maps/api/staticmap?center=<?php echo $addressLocation;?>&markers=<?php echo $addressLocation;?>&zoom=11&size=620x353&sensor=false">
<br/>
Expand Down

0 comments on commit d04db0a

Please sign in to comment.