Header CSS Alignment issue

Hi guys,

do you have any idea on how to align this text?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 

it should be like this…

<h3>Map</h3>
          <p style="bottom: 0; margin: 0; position: absolute; right: 0;"><a href="napobeachresortmap.php">Enlarge Map »</a></p>                                                              
            <span>   N - Napo Beach Resort, Mapipi Island, Biliran, Philippines                                               
            </span>  

Link

Just change the bottom:0; to top:0 or top:-10px.


<p style="margin: 0; position: absolute; right: 0;[B] top: -10px[/B];"><a href="napobeachresortmap.php">Enlarge Map »</a></p>

perfect… thanks… =)