Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a user file interface i'm trying to modify but my div isn't picking up the php generated content and resizing.

You can see it at: http://test3.hejmej.com (at least until the problem is resolved)

Here is the coding:


<?php 
include 'auth.php';
include 'header.php';
?>
<div class="tabs">
<div class="tab files active"><a href="index.php"><img src="img/files.png" alt=""     class="icon">My Files</a></div>
<div class="tab info"><a href="details.php"><img src="img/info-inactive.png" alt="" class="icon"> Account Information</a></div>
<div class="tab close"><a href="logout.php"></a></div>
</div>
<div class="section">
<?php $user->welcome(); ?>
</div>
<ul class="section" style="border-style:solid; border-width:10px; border-color:red;">
<?php $user->get_files();
if ( count( $user->files ) )
    foreach( $user->files as $file )
    echo '<li style="width:115px; height:115x;"><a href="file.php?name='.urlencode($file).'"><img src="file.php?name='.urlencode($file).'" height="100" width="100" /></a></li>';
else
    echo 'There are no files for you at the moment.';
?>
</ul>
<?php $universal = new User( 'universal' );
    if( $universal->exists() ) {
    $universal->get_files();
if ( count( $universal->files ) ) {
    echo '<ul class="section">Files that are avaible for all users:';
            foreach( $universal->files as $file )
echo '<li><a href="file.php?universal=true&name='.urlencode($file).'">'.$file.'</a>     <small>'.size($universal->path.$file).'</small></li>';
echo '</ul>';
}
} ?>

<?php include 'footer.php'; ?>
share|improve this question
What's the problem? – j08691 Jan 20 '12 at 20:47
in the link you are providing I see a form. Where the tabs supposed to go in relation to the form .section? – cbarg Jan 20 '12 at 20:53
sorry I forgot I have it user protected. – Mike Hejmej Jan 21 '12 at 0:04
Log in with ice0mike test090 username:password – Mike Hejmej Jan 21 '12 at 0:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.