Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
How to reduce space in postbit Details »»
How to reduce space in postbit
Version: 1.00, by I.am I.am is offline
Developer Last Online: Feb 2010 Show Printable Version Email this Page

Category: Board Optimization - Version: 4.0.x Rating:
Released: 12-21-2009 Last Update: Never Installs: 580
Template Edits
 
No support by the author.

To reduce the space between the message area and the signature space go in:

Admin CP -> Style & Templates -> Style Manager -> CSS Templates -> Postbit.css

Find:

PHP Code:
/*post bit*/ 
Add under it:

PHP Code:
.postbitlegacy .after_content {
clear:right !important;

Save.

Finish

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
5 благодарности(ей) от:
codeleakers, M.C., tekram, ThatGreenAlien, xeenux

Comments
  #122  
Old 01-18-2011, 08:13 PM
LoneWolf71 LoneWolf71 is offline
 
Join Date: Jun 2006
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, i figured it out, it will work, however I had to delete all my styles but my main style, revert, and then add it again, working perfect now. Not a big deal, but here you can see it works now..

www.asskickersinc.com

You will need to register.
Reply With Quote
  #123  
Old 01-19-2011, 03:16 AM
Shanti Nanda's Avatar
Shanti Nanda Shanti Nanda is offline
 
Join Date: May 2010
Location: Mexico
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's working perfect for me in 4.1.1 <3
Reply With Quote
  #124  
Old 01-19-2011, 02:56 PM
synseal's Avatar
synseal synseal is offline
 
Join Date: Apr 2009
Posts: 334
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The problem lies with vbseo, if you turn off the Likes mod in vBSEO this works.
Reply With Quote
  #125  
Old 01-19-2011, 08:36 PM
ekool ekool is offline
 
Join Date: Jun 2003
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by synseal View Post
The problem lies with vbseo, if you turn off the Likes mod in vBSEO this works.
Struggling with this too. Would like something that allows it to work with the VBSEO Likes and looks good as well.

Anyone?

Discussion on VBSEO.com here as well: http://www.vbseo.com/f2/how-change-l...xt-link-47500/
Reply With Quote
  #126  
Old 01-19-2011, 08:54 PM
EquinoxWorld EquinoxWorld is offline
 
Join Date: Nov 2009
Location: Naples
Posts: 354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK GOT IT FOLKS!

For those having problems with this mod using vBSEO simply search in templates (vbseo_buttons.css) for : .vbseo_buttons

replace:

Code:
.vbseo_buttons {
	clear: both;
	font-size: {vb:stylevar small_fontSize};
	position: relative;
}
with:

Code:
.vbseo_buttons {
	font-size: {vb:stylevar small_fontSize};
	position: relative;
}
and also replace:

Code:
.vbseo_buttons .vbseo_liked {
	border-color:#D5D5D5 #B3B3B3 #999999;
	border-style:solid;
	border-width:1px; 
	background: {vb:stylevar postbit_userinfo_background.backgroundColor} url(vbseo/resources/images/forum/vbseo_like.png) 5px center no-repeat;
	-moz-border-radius: {vb:stylevar border_radius};
	-webkit-border-radius: {vb:stylevar border_radius};
	border-radius: {vb:stylevar border_radius}; 
	clear: both;
	display: block;
	padding: {vb:math {vb:stylevar padding}-3} {vb:math {vb:stylevar padding}-3} {vb:math {vb:stylevar padding}-3} ;
	padding-{vb:stylevar left}: {vb:math {vb:stylevar padding}*2.5};
	margin: {vb:stylevar padding};
	<vb:if condition="$stylevar['textdirection'] == 'rtl'">
		background-position: right;
	</vb:if>
}
with :

Code:
.vbseo_buttons .vbseo_liked {
	border-color:#D5D5D5 #B3B3B3 #999999;
	border-style:solid;
	border-width:1px; 
	background: {vb:stylevar postbit_userinfo_background.backgroundColor} url(vbseo/resources/images/forum/vbseo_like.png) 5px center no-repeat;
	-moz-border-radius: {vb:stylevar border_radius};
	-webkit-border-radius: {vb:stylevar border_radius};
	border-radius: {vb:stylevar border_radius}; 
	display: block;
	padding: {vb:math {vb:stylevar padding}-3} {vb:math {vb:stylevar padding}-3} {vb:math {vb:stylevar padding}-3} ;
	padding-{vb:stylevar left}: {vb:math {vb:stylevar padding}*2.5};
	margin: {vb:stylevar padding};
	<vb:if condition="$stylevar['textdirection'] == 'rtl'">
		background-position: right;
	</vb:if>
}

And of course follow the instructions in the first post. Working perfect for me now.

ENJOY!

PS.: UPDATE: WORKS ON 4.1.3. WITH VBSEO 3.6.0

PS.: UPDATE: WORKS ON 4.1.11 WITH VBSEO 3.6.0
Reply With Quote
Благодарность от:
Taurus1
  #127  
Old 01-19-2011, 09:35 PM
synseal's Avatar
synseal synseal is offline
 
Join Date: Apr 2009
Posts: 334
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes that has fixed it, nice work!.
Reply With Quote
  #128  
Old 01-19-2011, 10:52 PM
EquinoxWorld EquinoxWorld is offline
 
Join Date: Nov 2009
Location: Naples
Posts: 354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by synseal View Post
Yes that has fixed it, nice work!.
Glad you confirm :up: Your mention of the vBSEO find made it easier so nice work to you too, happy we got this resolved.
Reply With Quote
  #129  
Old 01-20-2011, 02:21 PM
ekool ekool is offline
 
Join Date: Jun 2003
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EquinoxWorld View Post
OK GOT IT FOLKS!

For those having problems with this mod using vBSEO simply search in templates (vbseo_buttons.css) for : .vbseo_buttons

And of course follow the instructions in the first post. Working perfect for me now, check it out: http://aniworlds.net/free-world/75-lair-weirdos.html

ENJOY!
Working perfectly for me as well, thanks much!
Reply With Quote
  #130  
Old 01-23-2011, 08:09 PM
Gn_Snake Gn_Snake is offline
 
Join Date: Feb 2006
Location: Italy
Posts: 358
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yesss Man!!! :up:...Fixed!
Reply With Quote
  #131  
Old 01-24-2011, 11:54 AM
sisterhood's Avatar
sisterhood sisterhood is offline
 
Join Date: Nov 2008
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Extra Nice THX!!!
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 05:21 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.11719 seconds
  • Memory Usage 2,339KB
  • Queries Executed 26 (?)
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
  • (4)bbcode_code
  • (2)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (6)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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