vForums Support > Programming & Coding :: Code Requests & Support :: > Remove Gaps

Remove Gaps - Posted By hobo2525 (hobo2525) on 28th Sep 09 at 2:53pm
Hi,I want a code to remove all the gaps on the forum(the white spaces between the user bar,welcome table,menu,and the forums)
URL: thespot.vforums.co.uk

Thank you.

Re: Remove Gaps - Posted By CåñåÐå™ (canada) on 3rd Oct 09 at 1:18pm
I'm sure you'll find what you need in the code database .

This may be what you are looking for .
http://support.virtualforums.co.uk/board/database/topic/542/action/view_topic/remove-gap-above-welcome-table

Re: Remove Gaps - Posted By hobo2525 (hobo2525) on 3rd Oct 09 at 8:10pm
Thank you, but there is still a gap there.How can i remove it?

Re: Remove Gaps - Posted By CåñåÐå™ (canada) on 4th Oct 09 at 3:05pm
Your welcome .

The only other thing i can see that will do what you want . Put this one above the other one i showed you.
http://support.virtualforums.co.uk/board/database/topic/1368/action/view_topic/remove-from-menu

I didn't test it but it should remove the gap , between the menu buttons.

Re: Remove Gaps - Posted By Ross (admin) on 4th Oct 09 at 7:10pm
Just stick this in your Global Header or Style Sheet {Smile}

Code:
 
  1. <style type="text/css">
  2. <!--
  3. br { display: none; }
  4. table br, div br { display: inline; }
  5. //-->
  6. </style>
 


It's not fully tested so let me know how it goes {Smile}

Re: Remove Gaps - Posted By hobo2525 (hobo2525) on 4th Oct 09 at 10:05pm
It kind of worked.The menu is in the middle of the border of the user table,if i could move the menu out of that line that would be great.Thank you.

Re: Remove Gaps - Posted By Nick (nickb) on 4th Oct 09 at 10:55pm
So you want the menu buttons moved?

try:

Code:
 
  1. <style type="text/css">
  2. #welcome_table .menu font {
  3.      position: absolute;
  4.      top: 11px;
  5.      right: 45px;
  6. }
  7. </style>
 

Re: Remove Gaps - Posted By hobo2525 (hobo2525) on 5th Oct 09 at 6:36pm
That will work,I didnt even think of using that.Thank you both.

Re: Remove Gaps - Posted By Nick (nickb) on 5th Oct 09 at 7:55pm
You're welcome. {Smile}