vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=236)
-   -   Miscellaneous Hacks - Redirect Page to Long? (https://vborg.vbsupport.ru/showthread.php?t=246416)

Hell Bomb 07-11-2010 10:00 PM

Redirect Page to Long?
 
1 Attachment(s)
People with widescreen monitors see this all the time on just about every forum, when you are redirected you notice redirect page will be wider then the sides of the forum. Some forums it doesn't really make any different but when sites like vBulletin.org that have a big column with different images on the left and right you usually see the redirect box extend past them. Well my forum has this exact thing and it bothered me for the longest time. It took some guess and check but i finally got it. If you have no clue what im talking about well sorry, but check out the images and you will understand.


Open up the STANDARD_REDIRECT template replace everything with the following
Code:

$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$pagetitle</title>
</head>
<body>

<br />
<br />
<br />
<br />

<form action="$formfile" method="post" name="postvarform">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[outertablewidth]" align="center">
<tr>
        <td class="tcat">$vbphrase[redirecting]</td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">

                <blockquote>
                        <p>&nbsp;</p>
                        <p><strong>$errormessage</strong></p>
                        <if condition="$postvars">
                                $postvars
                                <p id="click_here_p" class="smallfont">$vbphrase[click_the_following_button]</p>
                                <input type="submit" class="button" id="proceed_button" value="$vbphrase[proceed]" onclick="proceed_click()" accesskey="s" />
                        <else />
                                <p class="smallfont"><a href="$url">$vbphrase[click_if_browser_does_not_redirect]</a></p>
                                <div><img src="$stylevar[imgdir_misc]/load.gif" alt="" border="0" /></div>
                        </if>
                </blockquote>

        </div>
        </td>
</tr>
</table>
</form>

<if condition="$postvars">

<!-- redirect with POST -->

<script type="text/javascript">
<!--
fetch_object('click_here_p').style.display = 'none';

myvar = "";
timeout = 18;
timerID = 0;

function proceed_click()
{
        clearTimeout(timerID);
        return true;
}

function submit_form()
{
        window.status = "Redirecting" + myvar;
        myvar = myvar + " .";
        timerID = setTimeout("submit_form();", 100);
        if (timeout > 0)
        {
                timeout -= 1;
        }
        else
        {
                clearTimeout(timerID);
                window.status = "";
                document.forms.postvarform.submit();
                fetch_object('proceed_button').disabled = true;
        }
}

submit_form();
//-->
</script>

<!-- / redirect with POST -->

<else />

<noscript>
<meta http-equiv="Refresh" content="2; URL=$url" />
</noscript>

<script type="text/javascript">
<!--
function exec_refresh()
{
        window.status = "$vbphrase[redirecting]" + myvar;
        myvar = myvar + " .";
        var timerID = setTimeout("exec_refresh();", 100);
        if (timeout > 0)
        {
                timeout -= 1;
        }
        else
        {
                clearTimeout(timerID);
                window.status = "";
                window.location = "$js_url";
        }
}

var myvar = "";
var timeout = 20;
exec_refresh();
//-->
</script>

</if>

</body>
</html>

the width should now be the same as whatever you set your forum width to be. If you would like to adjust the width you can change the "$stylevar[outertablewidth]" to any size you want.

Hell Bomb 07-12-2010 09:11 PM

Reserved

al2thero 12-02-2012 12:53 AM

thank you


All times are GMT. The time now is 10:08 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01031 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete