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

Reply
 
Thread Tools Display Modes
  #11  
Old 02-14-2006, 01:52 AM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if you want to stick with the div/css approach add the closing </div> here:
HTML Code:
<!-- paypal donations end -->
</table></div>
</td>
<td>
<!-- left side block end -->
you may also want to check the rest of your html code as you have many errors.
eg. missing quotes, alts attribute missing on images, meta tags content
Reply With Quote
  #12  
Old 02-14-2006, 01:58 AM
MRGTB MRGTB is offline
 
Join Date: Dec 2004
Posts: 548
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by princeton
if you want to stick with the div/css approach add the closing </div> here:
HTML Code:
<!-- paypal donations end -->
</table></div>
</td>
<td>
<!-- left side block end -->
you may also want to check the rest of your html code as you have many errors.
eg. missing quotes, alts attribute missing on images, meta tags content
can I just ask if your are aware that the paypal block is not the last one, but the "Useful Links" one is after the Paypal block. I just want to make sure as I would have thought the </div> would have to go after that last block. And the Paypal block is second to last

but I could be wrong, but I just want to confirm.
Reply With Quote
  #13  
Old 02-14-2006, 02:15 AM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think princeton is off one td, but I could be wrong. If your comments are correct, I believe where I placed the code is where you want it.
Reply With Quote
  #14  
Old 02-14-2006, 02:22 AM
MRGTB MRGTB is offline
 
Join Date: Dec 2004
Posts: 548
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by amykhar
I think princeton is off one td, but I could be wrong. If your comments are correct, I believe where I placed the code is where you want it.
I can see why Prince said put it there, for some strange reason he has: <!-- Left Block Code End --> after the Paypal block.

So I'm asuming he thought that was the last block, so were he meant put it was the same place as you, after that </table>

Thanks for the help both. That was really annoying me and I have spent 5 hours on just that one problem before you fixed it for me.

LOL - I'll never make a coder
Reply With Quote
  #15  
Old 02-14-2006, 11:33 AM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

just make sure it's after the </table> not </td> as amy has it (could be a typo on her part)

it should read </table></div></td>
Reply With Quote
  #16  
Old 02-14-2006, 02:02 PM
MRGTB MRGTB is offline
 
Join Date: Dec 2004
Posts: 548
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by princeton
just make sure it's after the </table> not </td> as amy has it (could be a typo on her part)

it should read </table></div></td>
I have done that now seeing as you seem pretty sure thats were it should be, thanks!
Reply With Quote
  #17  
Old 02-14-2006, 02:22 PM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Gary,

in portal page, check your META description TAGS ... there should be no quotes->" within the description

look for (more than 1)
HTML Code:
<img src="images/buttons/lastpost.gif" border=0" />
and replace it with
HTML Code:
<img src="images/buttons/lastpost.gif" border="0" alt="" />
another problem in html:
HTML Code:
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" alt="Click to make a donation" border="0"></a>
should be
HTML Code:
 <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" alt="Click to make a donation" border="0" />
that should fix most of your html problems (not sure if it will fix all of them)
Reply With Quote
  #18  
Old 02-14-2006, 02:44 PM
MRGTB MRGTB is offline
 
Join Date: Dec 2004
Posts: 548
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by princeton
Gary,

in portal page, check your META description TAGS ... there should be no quotes->" within the description
I'll check that as the Meta tag description is setup for both the homepage and the forumhome from the admin cp, and I know I did use quotes in the comments I entered about thew site. So I'll fix that.

Quote:
look for (more than 1)
HTML Code:
<img src="images/buttons/lastpost.gif" border=0" />
and replace it with
HTML Code:
<img src="images/buttons/lastpost.gif" border="0" alt="" />
If you mean the homepage were RSS latest threads posted are grabbed too, Well I didn't code that and here is the code used posted on vB. Not sure if you mean that causing the problem. As it's not really html code as you can see below.

Code:
<!-- Text Start -->
<script type="text/javascript" src="external.php?type=js"></script> 
<script language="" type="text/javascript">
<!--
for (x = 0; x < 30; x++)
{
document.writeln("<img class=\"inlineimg\" src=\"$stylevar[imgdir_button]/lastpost.gif\" alt=\"\" border=\"0\" /> <a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> <span class=\"time\">[$vbphrase[posted_by]: "+threads[x].poster+"]</span><br />");
}
//-->
</script>
<!-- Text End -->
Quote:
another problem in html:
HTML Code:
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" alt="Click to make a donation" border="0"></a>
should be
HTML Code:
 <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" alt="Click to make a donation" border="0" />
that should fix most of your html problems (not sure if it will fix all of them)
I take a look at that in the forumhome template
Reply With Quote
  #19  
Old 02-14-2006, 02:51 PM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the above is here -> http://www.garybolton.co.uk/forum/index.php?
Reply With Quote
  #20  
Old 02-14-2006, 02:56 PM
MRGTB MRGTB is offline
 
Join Date: Dec 2004
Posts: 548
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for that, I've fixed them all now, removed the quotes from the Admin CP in Meta Description wrapped around "ed2k links" and fixed all the other issues that were all in the forumhome template
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 06:28 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.06103 seconds
  • Memory Usage 2,263KB
  • Queries Executed 11 (?)
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
  • (10)bbcode_html
  • (6)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
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete