hobo2525 New Member
Posts: 8 Status: Offline Joined:
pm | Remove Gaps (28th Sep 09 at 2:53pm UTC) Resolved | | 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. | |
|
CåñåÐå™ Full Member
Posts: 427 Status: Offline Gender: Male Location: Toronto Ontario Joined:
pmwww | |
hobo2525 New Member
Posts: 8 Status: Offline Joined:
pm | Re: Remove Gaps (3rd Oct 09 at 8:10pm UTC) | | Thank you, but there is still a gap there.How can i remove it? | |
|
CåñåÐå™ Full Member
Posts: 427 Status: Offline Gender: Male Location: Toronto Ontario Joined:
pmwww | |
Ross Administrator
Posts: 3,709 Status: Offline Gender: Male Age: 8 1⁄1 Joined:
Additional Groups: Support Team
pmwwwgtalkvForum | Re: Remove Gaps (4th Oct 09 at 7:10pm UTC) | | Just stick this in your Global Header or Style Sheet
Code: - <style type="text/css">
- <!--
- br { display: none; }
- table br, div br { display: inline; }
- //-->
- </style>
It's not fully tested so let me know how it goes | |
|
|
hobo2525 New Member
Posts: 8 Status: Offline Joined:
pm | Re: Remove Gaps (4th Oct 09 at 10:05pm UTC) | | 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. | |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Remove Gaps (4th Oct 09 at 10:55pm UTC) | | So you want the menu buttons moved?
try:
Code: - <style type="text/css">
- #welcome_table .menu font {
- position: absolute;
- top: 11px;
- right: 45px;
- }
- </style>
| |
|
hobo2525 New Member
Posts: 8 Status: Offline Joined:
pm | Re: Remove Gaps (5th Oct 09 at 6:36pm UTC) | | That will work,I didnt even think of using that.Thank you both. | |
|
Nick Very Senior Member
Posts: 3,012 Status: Offline Gender: Male Location: vForums Age: 34 Joined:
pmwww | Re: Remove Gaps (5th Oct 09 at 7:55pm UTC) | | You're welcome. | |
|