How do I make the spacing between them go away so that they look like one image?
[SOLVED] Vertical Sig Spacing
Subject: [SOLVED] Vertical Sig Spacing
Last edited by Press 22 on Mon 19 May, 2008 02:39; edited 2 times in total
Last edited by Press 22 on Mon 19 May, 2008 02:39; edited 2 times in total
Subject: Re: Sig Spacing
^ LOL
I'd like to know how to do this as well. It looks a lot cleaner when looking at people's sigs.
I'd like to know how to do this as well. It looks a lot cleaner when looking at people's sigs.
Subject: Re: Sig Spacing
LOL Lopalong.
but no its just the spacing i need figured out, a lot of my members have asked to fix it.
but no its just the spacing i need figured out, a lot of my members have asked to fix it.
Subject: Re: Sig Spacing
Oh... you mean the vertical spacing. Well you can do the following.
Now you can make the two images appear together this way:
- #
- #-----[ OPEN ]------------------------------------------
- #
- includes/bbcode.php
- #
- #-----[ FIND ]------------------------------------------
- #
- var $self_closing_tags = array('[*]', '[hr]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#overview]Readme[/url]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#requirements]Readme[/url]', '[url=docs/readme_english.html#fresh_installation]Readme[/url]', '[url=docs/readme_english.html#upgrade_phpbb]Readme[/url]', '[url=docs/readme_english.html#upgrade_phpbb]Readme[/url]', '[url=docs/readme_english.html#upgrade_xs]Readme[/url]', '[url=docs/readme_english.html#upgrade_ip]Readme[/url]');
- #
- #-----[ REPLACE WITH ]------------------------------------------
- #
- var $self_closing_tags = array('[*]', '[hr]', '[br]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#overview]Readme[/url]', '[url=docs/readme_english.html#license]Readme[/url]', '[url=docs/readme_english.html#requirements]Readme[/url]', '[url=docs/readme_english.html#fresh_installation]Readme[/url]', '[url=docs/readme_english.html#upgrade_phpbb]Readme[/url]', '[url=docs/readme_english.html#upgrade_phpbb]Readme[/url]', '[url=docs/readme_english.html#upgrade_xs]Readme[/url]', '[url=docs/readme_english.html#upgrade_ip]Readme[/url]');
- #
- #-----[ FIND ]------------------------------------------
- #
- 'hr' => array(
- 'nested' => true,
- 'inurl' => true,
- 'allow_empty' => true,
- ),
- #
- #-----[ AFTER, ADD ]------------------------------------------
- #
- 'br' => array(
- 'nested' => true,
- 'inurl' => true,
- 'allow_empty' => true,
- ),
- #
- #-----[ FIND ]------------------------------------------
- #
- 'hr' => array(
- 'nested' => true,
- 'inurl' => true,
- 'allow_empty' => false,
- #
- #-----[ AFTER, ADD ]------------------------------------------
- #
- 'br' => array(
- 'nested' => true,
- 'inurl' => true,
- 'allow_empty' => false,
- ),
- #
- #-----[ FIND ]------------------------------------------
- #
- // Single tags: HR
- if($tag === 'hr')
- {
- if($this->is_sig)
- {
- return $error;
- }
- $extras = $this->allow_styling ? array('style', 'class') : array();
- if(isset($item['params']['param']))
- {
- $color = $item['params']['param'];
- }
- elseif(isset($item['params']['color']))
- {
- $color = $item['params']['color'];
- }
- $color = $this->valid_color($color);
- if($color === false)
- {
- $html = '<' . $tag . ' />';
- }
- else
- {
- $html = '<' . $tag . ' color="' . $color . '" />';
- }
- return array(
- 'valid' => true,
- 'html' => $html
- );
- }
- #
- #-----[ AFTER, ADD ]------------------------------------------
- #
- // Single tags: BR
- if($tag === 'br')
- {
- if($this->is_sig)
- {
- return $error;
- }
- $html = '<br />';
- return array(
- 'valid' => true,
- 'html' => $html
- );
- }
Now you can make the two images appear together this way:
Subject: Re: Sig Spacing
Good point, Andrea75. I thought of it but didn't try because I started thinking in a more generic way and I guess that using "align" will not work if you want to have the images centered, or if you want to add text beside it without wrapping arround. May be I'm wrong, because I have not tried, I'm only speaking about what I think it would happen in these cases.
Subject: Re: Sig Spacing
Yes... it seems like he is not willing to edit more code than he already edit for other reasons. :twisted:
andrea75 wrote: [View Post]
Yes... it seems like he is not willing to edit more code than he already edit for other reasons. :twisted:
Subject: Re: Sig Spacing
Yes... even because there are many hidden features in BBCode which may helps to achieve what needed without coding other specifics things. :P
hal9000 wrote: [View Post]
Yes... even because there are many hidden features in BBCode which may helps to achieve what needed without coding other specifics things. :P
Subject: Re: Sig Spacing
xDD
Yes, I'm sure. But would the solution you suggested to andrea75 work for centered images?
Yes, I'm sure. But would the solution you suggested to andrea75 work for centered images?
Page 1 of 2
You cannot post new topicsYou cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events
This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by Icy Phoenix based on phpBB
Generation Time: 0.2024s (PHP: 11% SQL: 89%)
SQL queries: 11 - Debug Off - GZIP Enabled