vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Remove space between images?? (https://vborg.vbsupport.ru/showthread.php?t=108511)

blkbird 02-21-2006 05:11 AM

Remove space between images??
 
Anyone know how to remove the space {between the blue} inside the circle?

http://img47.imageshack.us/img47/149/untitled2jm.png


code for sidebar
Code:

<table cellpadding="$stylevar[outerborderwidth]" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center">
        <tr>
                <td>
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" style="width:100%">
        <tr align="center">
                <td class="tcat2"><span class="smallfont"><b>My Content</b></span></td>
        </tr>
       
                <td class="tcat2">some stuff here</td>
</table>
                </td>
        </tr>
</table>
<br />

code for css
Code:

.tcat2
{
        background: #FFFFFF url(images/blizzard/gradients/sidebar_bg.gif);
        color: #FFFFFF;
border: 0px solid;
        font: bold 9pt arial, verdana, geneva, lucida, 'lucida grande', helvetica, sans-serif;
}
.tcat2 a:link
{
        color: #FFFFFF;
        text-decoration: none;
}
.tcat2 a:visited
{
        color: #FFFFFF;
        text-decoration: none;
}
.tcat2 a:hover, .tcat a:active
{
        color: #FFFFFF;
        text-decoration: underline;
}

TTT Anyone?

blkbird 02-22-2006 08:26 PM

any ideas?

KTBleeding 02-22-2006 08:31 PM

You're missing the opening and closing <tr> tags around your
HTML Code:

<td class="tcat2">some stuff here</td>
Try replacing it with this:
HTML Code:

<table cellpadding="$stylevar[outerborderwidth]" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center">
<tr>
        <td>
                <table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" style="width:100%">
                <tr align="center">
                        <td class="tcat2"><span class="smallfont"><b>My Content</b></span></td>
                </tr>
                <tr>
                        <td class="tcat2">some stuff here</td>
                </tr>
                </table>
        </td>
</tr>
</table>
<br />


blkbird 02-22-2006 10:48 PM

Just tried it and the very small line break is still there..... huh

KTBleeding 02-22-2006 11:57 PM

Oh, woops..

This should do the trick:
HTML Code:

<table cellpadding="$stylevar[outerborderwidth]" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center">
<tr>
        <td>
                <table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" style="width:100%">
                <tr align="center">
                        <td class="tcat2"><span class="smallfont"><b>My Content</b></span></td>
                </tr>
                <tr>
                        <td class="tcat2">some stuff here</td>
                </tr>
                </table>
        </td>
</tr>
</table>
<br />

Just replaced the
HTML Code:

cellspacing="$stylevar[cellspacing]"
With
HTML Code:

cellspacing="0"

blkbird 02-23-2006 01:36 AM

YESSSSSSSSSSS! We have success! Thanks for the help


All times are GMT. The time now is 07:05 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.01105 seconds
  • Memory Usage 1,733KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (5)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete