vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Remove Bottommost text

[F] Remove Bottommost text - Posted By ashkir (ashkir) on 10th Jan 08 at 12:39pm
I have ad free enabled, is there a code to remove the following (because I don't like it's location).

All times are GMT-8 :: The current time is 4:39am
This Forum is Powered By vForums
Get your own Free Remotely Hosted Message Board

Re: Remove Bottommost text - Posted By Ross (admin) on 10th Jan 08 at 1:07pm
Just add this to the Header {Smile}

Code:
 
  1. <style type="text/css">
  2. <!--
  3. #bottomtext { display: none; }
  4. //-->
  5. </style>
 

Re: Remove Bottommost text - Posted By ashkir (ashkir) on 10th Jan 08 at 1:10pm
Thanks Ross. =) Did what I wanted. =)

Now to figure out where all the extra lines are coming from.

Re: Remove Bottommost text - Posted By Ross (admin) on 10th Jan 08 at 1:12pm
 
Thanks Ross. =) Did what I wanted. =)

Now to figure out where all the extra lines are coming from.


They were outside of the <div> tag so weren't getting hidden. I've moved them so they should be gone now {Smile}

Re: Remove Bottommost text - Posted By ashkir (ashkir) on 10th Jan 08 at 1:19pm
Woah o_o. Thanks Ross. =)