The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Frame Width Help
Clash Man
post Aug 28 2009, 06:36 PM
Post #1





Group: Members
Posts: 1
Joined: 28-August 09
Member No.: 9,607



CODE
<?php
if (file_exists("install.php")) {
    die('You are seeing this message because either you haven\'t ran the install file yet, and can do so <a href="install.php">here</a>, or already have, and <strong>must delete it</strong>.');
}

if (!isset($_GET['info'])) {
    $preconfig_db_unnecessary = true;
}
require 'config.php';
$menufile = (KU_STATICMENU) ? 'menu.html' : 'menu.php';
$menusize = (KU_MENUTYPE == 'normal') ? '30px' : '10%';
$mainsize = 100-$menusize . '%';
header("Expires: Mon, 1 Jan 2030 05:00:00 GMT");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title><?php echo KU_NAME; ?></title>
    <link rel="shortcut icon" href="<?php echo KU_WEBPATH; ?>/favicon.ico" />
    <style type="text/css">
        body, html {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: auto;
        }
        #menu {
            position: absolute;
            left: 0px;
            top: 0px;
            margin: 0;
            padding: 0;
            border: 0px;
            height: 100%;
            width: <?php echo $menusize; ?>;
        }
        #main {
            position: absolute;
            left: <?php echo $menusize; ?>;
            top: 0px;
            border: 0px;
            height: 100%;
            width: <?php echo $mainsize; ?>;
        }
    </style>
</head>
<?php
if (isset($_GET['info'])) {
    require KU_ROOTDIR . 'inc/functions.php';
    echo '<body>';
    echo '<h1>General info:</h1><ul>';
    echo '<li>Version: kusaba x ' . KU_VERSION . '</li>';
    $bans = $tc_db->GetOne("SELECT COUNT(*) FROM `".KU_DBPREFIX."banlist`");
    echo '<li>Active bans: ' . $bans . '</li>';
    $wordfilters = $tc_db->GetOne("SELECT COUNT(*) FROM `".KU_DBPREFIX."wordfilter`");
    echo '<li>Wordfilters: ' . $wordfilters . '</li>';
    echo '<li>Modules loaded: ';
    $modules = modules_list();
    if (count($modules) > 0) {
        $moduleslist = '';
        foreach ($modules as $module) {
            $moduleslist .= $module . ', ';
        }
        echo substr($moduleslist, 0, -2);
    } else {
        echo 'none';
    }
    echo '</li>';
    echo '</ul>';
    echo '</body></html>';
    die();
}
?>
<body>
    <iframe src="<?php echo $menufile; ?>" name="menu" id="menu">
        <a href="<?php echo KU_WEBPATH . '/' . $menufile; ?>"><?php echo KU_NAME; ?></a>
    </iframe>
    <iframe src="news.php" name="main" id="main">
        <a href="<?php echo KU_WEBPATH;?>/news.php"><?php echo KU_NAME; ?> Navigation</a>
    </iframe>
</body>
</html>


Okay so this is the code for the index.php page, what it does is displays a menu frame on the left at 15% of the page, and then the content page on the rest of it.

What I would like it to do is instead of using 15% for the right frame I would like to use 180pixels instead, and the left frame should take up the remainder of the page. This frame is different for me though as it uses the stylesheet to supply it's width, height, border, and ect.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Aug 29 2009, 12:52 AM
Post #2


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



What is it, left or right? tongue.gif

Looks like you should change that here.
CODE
$menusize = (KU_MENUTYPE == 'normal') ? '30px' : '10%';
$mainsize = 100-$menusize . '%';


Try
CODE
$menusize = (KU_MENUTYPE == 'normal') ? '30px' : '180px';
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Aug 29 2009, 01:46 AM
Post #3


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



I wonder what's going to happen if you use (100-180px)%...
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 19th April 2024 - 10:04 AM