Log in

View Full Version : Resolved Positioning dynamic text in table



qlock
11-16-2008, 03:48 AM
Hello,

I'm trying to get the text to appear in the quote box correctly. It's at the top of my blog located at www[dot]thejdmabryblog[dot]com. I've almost got it but don't know how to position the text. The text is being pulled via php, not sure if that matters. Any help would be appreciated. TIA.

Here's my code:


<table style="width: 100%; border-collapse: collapse; background-image: url('http://www.thejdmabryblog.com/wp-content/images/TweetBox.jpg'); background-repeat: no-repeat">
<tr>
<td><font color="#646D7E"> <p><?php if (function_exists('get_twitter_msg')) { get_twitter_msg(); } ?></p> </font><br>
</td>
</tr>
</table>
<p>

qlock
11-16-2008, 04:49 AM
UPDATE:

I'm so badass! I figured it out! :D Here's the code for anyone that may come across this thread with the same problem.


<style type="text/css">
<!--
#apDiv1 {
position:relative;
left:46px;
top:15px;
width:519px;
height:0px;
z-index:1;
}
-->
</style>

<div class="bio">

<div id="apDiv1"><td><font color="#646D7E"> <p><?php if (function_exists('get_twitter_msg')) { get_twitter_msg(); } ?></p> </font><br>
</td> </div>
<img src="http://www.thejdmabryblog.com/wp-content/images/TweetBox.jpg" width="585" height="75" />
<p>
<a href="http://www.twitter.com/jdmabry" target="_blank">
<img border="0" src="http://www.jdmabry.com/Badges/TwitterBadge.jpg" width="207" height="65">
</a>

Snookerman
11-16-2008, 06:28 AM
Make sure you also add the Resolved prefix by going to your first post and edit it.

qlock
11-18-2008, 07:11 AM
Thanks for the tip!