vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Only head and base on...
[F] Only head and base on... - Posted By RuhRoe (mezorro) on 18th Feb 08 at 2:52am
Anyone got a code that can make the head and base only on the main table and information center?
Re: Only head and base on... - Posted By Alex Bailey (system) on 18th Feb 08 at 3:00am
Isn't the head and base only on the main table and info center anyway.
Re: Only head and base on... - Posted By RuhRoe (mezorro) on 18th Feb 08 at 3:03am
Not for me. Link here http://mezgraphics.vforums.co.uk/
Re: Only head and base on... - Posted By dog199200 (dog199200) on 18th Feb 08 at 3:07am
no the images also go around the logo image and the menu
Re: Only head and base on... - Posted By Michael (wrighty) on 18th Feb 08 at 5:57pm
try this:
<script>
get('table','id')[0].style.display='none';
get('table','id')[3].style.display='none';
</script>
Re: Only head and base on... - Posted By RuhRoe (mezorro) on 18th Feb 08 at 9:11pm
Where do I put it? I tried global headers and footers and it doesn't work.
Re: Only head and base on... - Posted By Michael (wrighty) on 18th Feb 08 at 9:33pm
<script>
get('table','tag')[0].style.display='none';
get('table','tag')[3].style.display='none';
</script>
Global Header! ^ use that one.
Re: Only head and base on... - Posted By RuhRoe (mezorro) on 18th Feb 08 at 9:47pm
Thanks. Is there also something that gets rid of the one in pm bar? with the Logged In as: User No New Private Messages :: Mark All Boards As Read
Re: Only head and base on... - Posted By Michael (wrighty) on 18th Feb 08 at 9:48pm
<script>
get('table','tag')[4].style.display='none';
get('table','tag')[7].style.display='none';
</script>
Re: Only head and base on... - Posted By RuhRoe (mezorro) on 18th Feb 08 at 9:58pm
Thanks man