| Author |
Message |
GlueBeard |
|
Post subject: Theme Question: Gap between right block items
Posted: Aug 28, 2004 - 03:34 PM
|
|
Pirate Critic
Joined: Aug 18, 2004
Posts: 347
Location: The Isle of GlueBeard
Status: Offline
|
|
I am using a modified PostNukeBlue100 theme for my site.
My question is this: On the right hand side of my front page, there is a gap between the various modules displayed in the right block section. How do I get rid of it?
I have attempted to eliminate it by reducing padding and margins to zero.
I have edited both the theme.php file and the styleNN.css file, to no effect. |
|
|
| |
|
|
|
 |
mars |
|
Post subject:
Posted: Aug 28, 2004 - 05:49 PM
|
|
Site Admin

Joined: Aug 15, 2004
Posts: 4277
Status: Offline
|
|
| Can you post the right block section from your theme.php? |
|
|
| |
|
|
|
 |
GlueBeard |
|
Post subject:
Posted: Aug 28, 2004 - 10:01 PM
|
|
Pirate Critic
Joined: Aug 18, 2004
Posts: 347
Location: The Isle of GlueBeard
Status: Offline
|
|
Sure. Let me know if this is not what you are wanting:
//Begin Right Block
elseif ($block['position'] == 'r') { // Right side blocks ?>
<!----- Right side block ----->
<TABLE border="0" cellpadding="0" cellspacing="0" width="170">
<TR>
<TD bgcolor="#000000" align="center"><IMG name="BlockRTop" src="themes/<?PHP echo $thename ?>/images/BlockRTop.gif" width="100%" height="30" border="0"></TD>
</TR>
<TR>
<TD class="BlockContent" valign="top" background="themes/<?PHP echo $thename ?>/images/BlueStripeBgrnd.gif">
<?PHP if (!empty($block['title'])) { // Display title if there is one ?>
<DIV onClick="toggleMenu('<?PHP echo $block['bid'] ?>')"><H4 class="BlockTitleRight"><?PHP echo $block['title'] ?></H4></DIV>
<?PHP } ?>
<DIV id="<?PHP echo $block['bid'] ?>" style="display:;"><?PHP echo $block['content'] ?></DIV>
</TD>
</TR>
</TABLE><BR>
<!----- End right side block ----->
|
|
|
| |
|
|
|
 |
mars |
|
Post subject:
Posted: Aug 28, 2004 - 10:08 PM
|
|
Site Admin

Joined: Aug 15, 2004
Posts: 4277
Status: Offline
|
|
| Remove the final <BR> at the end there. |
|
|
| |
|
|
|
 |
GlueBeard |
|
Post subject:
Posted: Aug 28, 2004 - 10:43 PM
|
|
Pirate Critic
Joined: Aug 18, 2004
Posts: 347
Location: The Isle of GlueBeard
Status: Offline
|
|
| Rather obvious, after you point it out, but that was the culprit. |
|
|
| |
|
|
|
 |
mars |
|
Post subject:
Posted: Aug 29, 2004 - 12:14 AM
|
|
Site Admin

Joined: Aug 15, 2004
Posts: 4277
Status: Offline
|
|
|
|
|
 |
|
|