Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #11  
Old 02-18-2008, 02:53 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok Lets see.............

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

OK That fixed it but now all my ads down there are to the left also and bunched together , Look at it in Firefox its perfect but in IE its to the left and crunched together How do i fix that

THanks Again !
Reply With Quote
  #12  
Old 02-18-2008, 02:59 AM
Guest210212002
Guest
 
Posts: n/a
Default

To re-center your banners above the WGO box, add the red center to the actual table call, and (imo) drop the width statement, since it'll auto-span to the size of the container anyhow.

Code:
<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" width="849" height="116" align="center">
Edit: Or make the width ="100%", which might be better.

Edit again: Actually, if you drop all the actual size constraints from that table (cell width/height as well) it would center all the images and span them across.

Anytime, btw.

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

I'd also toss a border="0" around the actual banner images themselves, to get rid of the blue border.

Code:
<img border="0" src="/bannerads/ddsmall.gif" vspace="2">
Reply With Quote
  #13  
Old 02-18-2008, 03:04 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK i made your edits and it centered the Ad Block ,the ads are spaced horizontally but not Vertically , IS there anyway to fix that ,

Man your a Ton of Help Thanks !

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

OK let me try them edits !! BTW Why is my right banner lower than my left on IE ?

PHP Code:
<table border="0" width="930" height="60">
    <
tr>
        <
td height="60" width="465" align="center">&nbsp;$header_advertisement</td>
        <
td height="60" width="465" align="center">&nbsp;$footer_advertisement</td>
    </
tr>
</
table
Reply With Quote
  #14  
Old 02-18-2008, 03:10 AM
Guest210212002
Guest
 
Posts: n/a
Default

They look just right in IE to me now. Just toss the border="0" in the IMG tags and you'll be stylin'.

Cheers man.

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

Quote:
Originally Posted by DiesellMinded View Post
OK i made your edits and it centered the Ad Block ,the ads are spaced horizontally but not Vertically , IS there anyway to fix that ,
What I'd do (keep in mind I'm half asleep, haha) would be to add an &nbsp; to each side of the image, just to space them out a little bit from each other. The extra little vertical space, I'll have to take a peek at your code tomorrow and see where that's coming from. (I'd do it now, but it's 12:11AM and I'll just give you bad advice. )

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

Check that - it looks like you have two banners per cell. You aren't closing the first href call though, take a look:

The red code is missing.

Code:
<a target="_blank" class="banner" href="http://www.fixinrams.com">
			<img src="/bannerads/fixinramsadgears.gif" vspace="2"></a><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img src="/bannerads/nhrda.gif" vspace="2"></a></td>
Try like so, the red is what's changed. This will close the tags properly, and drop the border around the images. It looks cool blue, but it'll go purple on you once you click the link in IE.

Code:
<a target="_blank" class="banner" href="http://www.fixinrams.com">
			<img border="0" src="/bannerads/fixinramsadgears.gif" vspace="2"></a><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img border="0" src="/bannerads/nhrda.gif" vspace="2"></a></td>
If you went with one ad per cell and two rows, it'd be neater and easier to format.

Code:
<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" align="center">
<tr><td>banner 1</td><td>banner 2</td><td>banner 3</td><td>banner 4</td></tr>
<tr><td>banner 5</td><td>banner 6</td><td>banner 7</td><td>banner 8</td></tr>
</table>
Something like that, with the actual banner codes in there.
Adding in your CSS, style, width, etc.
Reply With Quote
  #15  
Old 02-18-2008, 03:16 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok Ill add the Red Code

I made the edits as you say to the Ad Block above WGO and on IE there still not spread out ...can you see it ... Compaired to FireFox ?

Thanks

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

Ok Ill add the </a>

Any Idea on the Big Banner ad The Right ones lower
Reply With Quote
  #16  
Old 02-18-2008, 03:21 AM
Guest210212002
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by DiesellMinded View Post
Ok Ill add the Red Code

I made the edits as you say to the Ad Block above WGO and on IE there still not spread out ...can you see it ... Compaired to FireFox ?

Thanks
Yeah, the extra little vertical space is still there because it's two images per cell. I think it looks pretty great right now - They won't go all the way to the edge of your forum table just because of the general size of the images. They're centered on the page (and look WAY better without the border, if you ask me ).
Reply With Quote
  #17  
Old 02-18-2008, 03:28 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Man I Added the </a> Didnt seem to change anything

But we made Great Strides !!

About the CSS and all that Im not real Sure what i need to do there ...lol

Any idea why IE wants the right top Banner lower than the left ?

PHP Code:
<table border="0" width="930" height="60">
    <
tr>
        <
td height="60" width="465" align="center">&nbsp;$header_advertisement</td>
        <
td height="60" width="465" align="center">&nbsp;$footer_advertisement</td>
    </
tr>
</
table
Thanks Again You have been alot of help

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

BTW i used Front page to code the ad blocks ...hehehe
Reply With Quote
  #18  
Old 02-18-2008, 02:46 PM
Guest210212002
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by DiesellMinded View Post
Thanks Man I Added the </a> Didnt seem to change anything
The </a> doesn't change the appearance, it just closes the tag properly.

And ack, frontpage! Noooo!

I use HTML-Kit, and good ol' notepad.

http://www.chami.com/html-kit/
Reply With Quote
  #19  
Old 02-18-2008, 03:43 PM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok ive downloaded your Program , ANy idea why the banners at the top wants to be uneven on IE only ?Other than the fact that IE Sucks

Thanks
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 06:32 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04299 seconds
  • Memory Usage 2,256KB
  • Queries Executed 13 (?)
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
  • (5)bbcode_code
  • (2)bbcode_php
  • (3)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
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (5)postbit_onlinestatus
  • (9)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_postinfo_query
  • fetch_postinfo
  • 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