Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Design and Graphics Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 11-18-2007, 12:12 PM
richaldridge richaldridge is offline
 
Join Date: Feb 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Annoying 100% border on login.php

Hi guys,

If you view the attached screen-shot, what I'm about to ask will make more sense

Basically the outside border sits at 100% (my forum uses 100% width).

However, on the login page this looks plain daft, so I need to change something so either the border is removed (for this page only), or ideally for the border to sit around the logn box in the centre of the screen.

Could someone point me in the right direction please?

Thanks,
Richard

(Also posted on vB.com but not had any response)
Attached Images
File Type: jpg login-screen.jpg (65.6 KB, 0 views)
Reply With Quote
  #2  
Old 11-18-2007, 12:23 PM
Millenium IT Millenium IT is offline
 
Join Date: Nov 2006
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You know, the weird thing is, that page isnt even suppose to have a border on it O.o
Reply With Quote
  #3  
Old 11-18-2007, 12:35 PM
richaldridge richaldridge is offline
 
Join Date: Feb 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

LOL, don't say that!

Well the rest of my site is supposed to have a 100% black border, so I'm assuming that when designing the site, we've put a tag in the wrong place.

As a long shot, could you suggest the best place to look?
Reply With Quote
  #4  
Old 11-18-2007, 01:09 PM
Millenium IT Millenium IT is offline
 
Join Date: Nov 2006
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok gimee a second

--------------- Added [DATE]1195398931[/DATE] at [TIME]1195398931[/TIME] ---------------

Could you please provide me with the template contents of your "STANDARD_REDIRECT" template?
Reply With Quote
  #5  
Old 11-18-2007, 01:28 PM
richaldridge richaldridge is offline
 
Join Date: Feb 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Assume this is the correct file? Thanks in advance for your help.

Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<if condition="!$postvars">

	<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>
$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="70%" 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" value="$vbphrase[proceed]" accesskey="s" />
			<else />
				<p class="smallfont"><a href="$url">$vbphrase[click_if_browser_does_not_redirect]</a></p>
				<div>&nbsp;</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';
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();
	}
}

myvar = "";
timeout = 18;
submit_form();
//-->
</script>
	
<!-- / redirect with POST -->
</if>

</body>
</html>
Reply With Quote
  #6  
Old 11-18-2007, 01:33 PM
Millenium IT Millenium IT is offline
 
Join Date: Nov 2006
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, its definitly not in the template. The only other thing that I think it could be is a CSS code wich is causing this. Check your aditional CSS defenitions for anything that might be the result of whats happenening, thats all I can think of. Sorry I cant be of any better help :/

--EDIT--

You also might want to take a look at the CSS definitions for your "surround panel" block, think it might be something there thats causing this to happen.
Reply With Quote
  #7  
Old 11-18-2007, 01:43 PM
richaldridge richaldridge is offline
 
Join Date: Feb 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will try and have a look now - I'm fine with the basics, but I'm not a seasoned expert lol.

Thanks,
Richard

Edit: The CSS entry for "Surround Panel" is the standard version - nothing has been added.
Reply With Quote
  #8  
Old 11-18-2007, 01:50 PM
Millenium IT Millenium IT is offline
 
Join Date: Nov 2006
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Then I'm truly mistified, no ideas maybe someone else will come across this topic and know what to do
Reply With Quote
  #9  
Old 11-18-2007, 01:52 PM
richaldridge richaldridge is offline
 
Join Date: Feb 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Millenium IT View Post
Then I'm truly mistified, no ideas maybe someone else will come across this topic and know what to do
I hope so - it's the only real bug I have left on my site.

Spent ages looking for the error, but with no joy. Thanks for trying though. Can anyone else offer a suggestion?

Richard
Reply With Quote
  #10  
Old 11-18-2007, 11:52 PM
Gray Matter Gray Matter is offline
 
Join Date: May 2005
Posts: 260
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where did you add the border? Body tag definition? Additional CSS? "headinclude"?
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:51 PM.


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.04336 seconds
  • Memory Usage 2,266KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete