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

Reply
 
Thread Tools Display Modes
  #1  
Old 09-24-2007, 12:13 AM
Masked Crusader Masked Crusader is offline
 
Join Date: Oct 2005
Location: Sacramento, CA, USA
Posts: 293
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Unwanted Spacing Between Images

Hey guys.

I am in the middle of making a new Mod for vbulletin and I ran into a bit of a snag.

If you go to www.chosen-wow.com/forumlist.php, you will see at the top that there is a "Raid Progression" table. In that table, you will see quite a few pictures with spaces between all of them.

How do I make the space between each image in a row go away? In other words, what code am I missing from the table code below?

Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>

	<tr>
		<td class="tcat" colspan="2">Chosen Raid Progression</td>
	</tr>
</thead>

<tbody>
	<tr>
		<td class="alt1" width="50%">
                <center><div class="progress_title">Karazhan</div>
                <img src="progression_mod/kz_1_dead.jpg" width="53" height="71">
                <img src="progression_mod/kz_2_dead.jpg" width="48" height="71">
                <img src="progression_mod/kz_3_dead.jpg" width="48" height="71">
                <img src="progression_mod/kz_4_dead.jpg" width="48" height="71">
                <img src="progression_mod/kz_5_dead.jpg" width="47" height="71">
                <img src="progression_mod/kz_6_dead.jpg" width="48" height="71">
                <img src="progression_mod/kz_7_dead.jpg" width="47" height="71">
                <img src="progression_mod/kz_8_dead.jpg" width="47" height="71">
                <img src="progression_mod/kz_9_dead.jpg" width="62" height="71">

                <div class="progress_title">Serpentshrine Cavern</div>
                <img src="progression_mod/ssc_1_alive.jpg" width="53" height="71">
                <img src="progression_mod/ssc_2_alive.jpg" width="48" height="71">
                <img src="progression_mod/ssc_3_alive.jpg" width="48" height="71">
                <img src="progression_mod/ssc_4_alive.jpg" width="48" height="71">
                <img src="progression_mod/ssc_5_alive.jpg" width="47" height="71">
                <img src="progression_mod/ssc_6_alive.jpg" width="48" height="71">
                <img src="progression_mod/ssc_7_bkg.jpg" width="47" height="71">
                <img src="progression_mod/ssc_8_bkg.jpg" width="47" height="71">
                <img src="progression_mod/ssc_9_bkg.jpg" width="62" height="71">
                
                <div class="progress_title">Mount Hyjal</div>
                <img src="progression_mod/mh_1_alive.jpg" width="53" height="71">
                <img src="progression_mod/mh_2_alive.jpg" width="48" height="71">
                <img src="progression_mod/mh_3_alive.jpg" width="48" height="71">
                <img src="progression_mod/mh_4_alive.jpg" width="48" height="71">
                <img src="progression_mod/mh_5_alive.jpg" width="47" height="71">
                <img src="progression_mod/mh_6_bkg.jpg" width="48" height="71">
                <img src="progression_mod/mh_7_bkg.jpg" width="47" height="71">
                <img src="progression_mod/mh_8_bkg.jpg" width="47" height="71">
                <img src="progression_mod/mh_9_bkg.jpg" width="62" height="71">
                </center>

                <td class="alt1" width="50%">
                <center><div class="progress_title">Outdoor & World</div>
                <img src="progression_mod/wld_1_dead.jpg" width="53" height="71" border="0">
                <img src="progression_mod/wld_2_dead.jpg" width="48" height="71" border="0">
                <img src="progression_mod/wld_3_alive.jpg" width="48" height="71">
                <img src="progression_mod/wld_4_alive.jpg" width="48" height="71">
                <img src="progression_mod/wld_5_alive.jpg" width="47" height="71">
                <img src="progression_mod/wld_6_bkg.jpg" width="48" height="71">
                <img src="progression_mod/wld_7_bkg.jpg" width="47" height="71">
                <img src="progression_mod/wld_8_bkg.jpg" width="47" height="71">
                <img src="progression_mod/wld_9_bkg.jpg" width="62" height="71">
                
                <div class="progress_title">Tempest Keep</div>
                <img src="progression_mod/tk_1_dead.jpg" width="53" height="71">
                <img src="progression_mod/tk_2_alive.jpg" width="48" height="71">
                <img src="progression_mod/tk_3_alive.jpg" width="48" height="71">
                <img src="progression_mod/tk_4_alive.jpg" width="48" height="71">
                <img src="progression_mod/tk_5_bkg.jpg" width="47" height="71">
                <img src="progression_mod/tk_6_bkg.jpg" width="48" height="71">
                <img src="progression_mod/tk_7_bkg.jpg" width="47" height="71">
                <img src="progression_mod/tk_8_bkg.jpg" width="47" height="71">
                <img src="progression_mod/tk_9_bkg.jpg" width="62" height="71">                
                
                <div class="progress_title">Black Temple</div>
                <img src="progression_mod/bt_1_alive.jpg" width="53" height="71">
                <img src="progression_mod/bt_2_alive.jpg" width="48" height="71">
                <img src="progression_mod/bt_3_alive.jpg" width="48" height="71">
                <img src="progression_mod/bt_4_alive.jpg" width="48" height="71">
                <img src="progression_mod/bt_5_alive.jpg" width="47" height="71">
                <img src="progression_mod/bt_6_alive.jpg" width="48" height="71">
                <img src="progression_mod/bt_7_alive.jpg" width="47" height="71">
                <img src="progression_mod/bt_8_alive.jpg" width="47" height="71">
                <img src="progression_mod/bt_9_alive.jpg" width="62" height="71">
                </center>
                </td>
	</tr>
</tbody>
</table>

Thanks in advance.
Reply With Quote
  #2  
Old 09-24-2007, 06:41 AM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Give your table an id of "raidTable" and then stick this in your CSS:

Code:
#raidTable img { margin:0; padding:0; }
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 09:52 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.05284 seconds
  • Memory Usage 2,178KB
  • 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
  • (2)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (2)post_thanks_box
  • (2)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit_info
  • (2)postbit
  • (2)postbit_onlinestatus
  • (2)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete