Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 09-12-2013, 02:23 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default 2 odd problems

1. Mobile version of www.talkjesus.com, register page step 1/2 (verify age page). Issue is, the bible verse script is overlapping the "register" headline title, not sure why. Even the footer is missing from that page too, just doesn't show up.

I have that verse script code inside the footer template.

The footer template code

Code:
<div id="footer">

<ul id="footer_links">
<vb:if condition="$show['forgetpassword']">
	<li class="first"><a href="login.php?{vb:raw session.sessionurl}do=lostpw" rel="external">{vb:rawphrase forgot_your_password}</a></li>
<vb:else />
	<vb:if condition="$show['member']">
		<li class="first"><a href="login.php?{vb:raw session.sessionurl}do=logout&amp;logouthash={vb:raw bbuserinfo.logouthash}">{vb:rawphrase log_out}</a></li>
	<vb:else />
		<li class="first"><a href="mobile.php?{vb:raw session.sessionurl}do=login">{vb:rawphrase log_in}</a></li>
	</vb:if>
</vb:if>
<vb:if condition="$show['registerbutton']">
	<li><a href="register.php{vb:raw session.sessionurl_q}" rel="external">{vb:rawphrase register}</a></li>
</vb:if>
	<vb:if condition="$show['quickchooser']">
		<li<vb:if condition="$show['forgetpassword']"> class="last"</vb:if>><a href="{vb:raw vboptions.forumhome}/?styleid={vb:raw vboptions.styleid}" class="fullsitelink" rel="external">{vb:rawphrase full_site}</a></li>
	</vb:if>
<vb:if condition="!$show['forgetpassword']">
	<li class="first"><a href="#top" class="scrolltop" rel="external">{vb:rawphrase top}</a></li>
</vb:if>
        <li class="last"><a href="http://www.talkjesus.com/misc.php?do=randomthread">Random Thread</a></li>
</ul>

<div id="footer_morecopyright" class="shade footer_morecopyright">
	<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
	{vb:raw cronimage}
	<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
	{vb:raw vboptions.copyrighttext}
</div>

</div>

<vb:if condition="$vboptions['enablefacebookconnect']">
	{vb:raw facebook_footer}
</vb:if>

<div style="background:#43A6DF;padding:10px;margin:0px;">
<span style="float:right">
<a href="http://www.facebook.com/talkjesus" target="_blank"><img src="http://www.talkjesus.com/images/metro_mobile/blue/mobile/facebook.png" width="40" /></a>&nbsp;
<a href="http://www.twitter.com/talkjesus" target="_blank"><img src="http://www.talkjesus.com/images/metro_mobile/blue/mobile/twitter.png" width="40" /></a>
</span>
	<p style="color:#FFFFFF;font-family:'Open Sans',sans-serif;font-size:16px;padding:0px;margin:0px;font-weight:normal;font-style:normal;text-decoration:none;background:#43A6DF">
		today's bible verse
	</p>
	<p style="text-align:left;color:#FFFFFF;padding:10px;margin:3px 4px 0px;font-family:'Open Sans',sans-serif;font-size:16px;font-weight:normal; opacity:.7;-moz-opacity:.7">
	<script type="text/javascript" src="http://www.christnotes.org/syndicate.php?content=dbv&amp;type=js2&amp;tw=auto&amp;tbg=43A6DF&amp;bw=0&amp;bc=000000&amp;ta=L&amp;tc=FFFFFF&amp;tf=Open Sans&amp;ts=14&amp;ty=B&amp;va=L&amp;vc=FFFFFF&amp;vf=Open Sans&amp;vs=12&amp;tt=3&amp;trn=NIV"></script>
</p>
</div>

<vb:if condition="$vboptions['enablefacebookconnect']">
	{vb:raw facebook_footer}
</vb:if>

</div><!-- data-role="page" -->
the register_verify_age template is

Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"> xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
	{vb:raw headinclude}
	<title>{vb:rawphrase register_at_x, {vb:raw vboptions.bbtitle}}</title>
	{vb:raw headinclude_bottom}
</head>
<body>

{vb:raw header}

{vb:raw navbar}

<div id="pagetitle" class="pagetitle ui-bar-b">
	<h1 class="pagetitle">{vb:rawphrase vbulletin_registration}</h1>
</div>

<div data-role="content">
	<form action="register.php?do=checkdate" method="post" class="vbform block" data-ajax="false">
		<h3 style="font-size: 22px; font-weight: 300">enter birthdate</h3>

		<div data-role="fieldcontain">
			<label for="month_va" class="select">{vb:rawphrase month}:</label>
			<select name="month" id="month_va" tabindex="1">
				<option value="" selected="selected">-</option>
				<option value="01">{vb:rawphrase january}</option>
				<option value="02">{vb:rawphrase february}</option>
				<option value="03">{vb:rawphrase march}</option>
				<option value="04">{vb:rawphrase april}</option>
				<option value="05">{vb:rawphrase may}</option>
				<option value="06">{vb:rawphrase june}</option>
				<option value="07">{vb:rawphrase july}</option>
				<option value="08">{vb:rawphrase august}</option>
				<option value="09">{vb:rawphrase september}</option>
				<option value="10">{vb:rawphrase october}</option>
				<option value="11">{vb:rawphrase november}</option>
				<option value="12">{vb:rawphrase december}</option>
			</select>

			<label for="day_va" class="select">{vb:rawphrase day}:</label>
			<select name="day" id="day_va" tabindex="1">
				<option value="" selected="selected">-</option>
				<option value="01">1</option>
				<option value="02">2</option>
				<option value="03">3</option>
				<option value="04">4</option>
				<option value="05">5</option>
				<option value="06">6</option>
				<option value="07">7</option>
				<option value="08">8</option>
				<option value="09">9</option>
				<option value="10">10</option>
				<option value="11">11</option>
				<option value="12">12</option>
				<option value="13">13</option>
				<option value="14">14</option>
				<option value="15">15</option>
				<option value="16">16</option>
				<option value="17">17</option>
				<option value="18">18</option>
				<option value="19">19</option>
				<option value="20">20</option>
				<option value="21">21</option>
				<option value="22">22</option>
				<option value="23">23</option>
				<option value="24">24</option>
				<option value="25">25</option>
				<option value="26">26</option>
				<option value="27">27</option>
				<option value="28">28</option>
				<option value="29">29</option>
				<option value="30">30</option>
				<option value="31">31</option>
			</select>
		</div>
			
		<div data-role="fieldcontain">
			<label for="year_va">{vb:rawphrase year}:</label>
			<input type="text" class="textbox numeric" name="year" id="year_va" size="4" tabindex="1" maxlength="4" value="" />			
		</div>
		
		<button type="submit" data-theme="a">{vb:rawphrase proceed_ellipsis}</button></div>

		<input type="hidden" name="do" value="checkdate" />
		<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
		<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
		<input type="hidden" name="url" value="{vb:raw url}" />
	</form>
</div>

{vb:raw footer}

</body>
</html>
2. Other screenshot of desktop version, shows big blue block covering half the menu tabs. I have been reported of this from users apparently running Vista or XP, either IE or Chrome (so far). I replicated this on iOS 6 / Safari and Mercury browsers. I am unable to replicate this on desktop / Windows 8 with Chrome, Firefox or IE11. I hope someone else can help figure this out.

Thank you.
Attached Images
File Type: png mobile.PNG (11.5 KB, 0 views)
File Type: jpg photo.jpg (62.3 KB, 0 views)
Reply With Quote
  #2  
Old 09-13-2013, 12:04 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Posts removed.

Post sensibly or move on.
Reply With Quote
  #3  
Old 09-14-2013, 07:20 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Paul.

Would appreciate help on this.
Reply With Quote
  #4  
Old 09-18-2013, 09:18 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would appreciate if someone can please help me out on this. Thanks
Reply With Quote
  #5  
Old 09-19-2013, 12:31 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Chadi View Post
I would appreciate if someone can please help me out on this. Thanks
Shoot me over a pm w/ login details, I rarely login sites to fix issues as I prefer the owner/coders learn to fix it themselves but seeing as how it will be fixed in a more timely manner and prevent more of your hair from falling out (lol with me) just shoot me over URL/Login details via pm - I'll fix then come back here and disclose what was wrong and how it was fixed.

- Supes
Reply With Quote
  #6  
Old 09-19-2013, 03:54 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
Shoot me over a pm w/ login details, I rarely login sites to fix issues as I prefer the owner/coders learn to fix it themselves but seeing as how it will be fixed in a more timely manner and prevent more of your hair from falling out (lol with me) just shoot me over URL/Login details via pm - I'll fix then come back here and disclose what was wrong and how it was fixed.

- Supes
Thanks, but I'm not comfortable handing out access like that. I'd rather do it myself with assistance here. I'm sure you understand.

Appreciate your offer nonetheless

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

I think I fixed the problem by disabling one of the navtabs. Still waiting for some members to confirm on their end
Reply With Quote
Reply


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 01:42 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.04178 seconds
  • Memory Usage 2,250KB
  • 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
  • (2)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (6)postbit
  • (2)postbit_attachment
  • (6)postbit_onlinestatus
  • (6)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete