vForums Support > vForums :: Report a Bug :: > UBBC box inside posting area.

UBBC box inside posting area. - Posted By Nick (nickb) on 5th Feb 11 at 4:41pm
I for some reason have this on Power Web Hosting and iDirectory support forum

here is for Power Web Hosting: http://www.mirrorimg.net/images/bw.jpeg

and here is for iDirectory: http://www.mirrorimg.net/images/gkb.jpeg

http://idirectory.vforums.co.uk

http://ihosting.vforums.co.uk

Why would it do this? My Test forum, and this forum doesn't do this, so why would those 2? It's only in the Quick Reply area.

Re: UBBC box inside posting area. - Posted By Ross (admin) on 5th Feb 11 at 9:34pm
Only checked iDirectory but would presume this applies to both. You have this CSS code in (I think) the Global Header. It is causing the problem:

Code:
 
  1. #quick_reply_padding {
  2. padding-right: 0px !important;
  3. }
 

Re: UBBC box inside posting area. - Posted By Nick (nickb) on 5th Feb 11 at 10:26pm
That would be this code:

Code:
 
  1. <style type = 'text/css'>
  2. #footertime, #footerstats {
  3. display: none;
  4. }
  5. #bottomtext div {
  6. float: none !important;
  7. text-align: center !important;
  8. }
  9. #user_table{
  10. display:none;
  11. }
  12. #subscribe_topic {
  13. display: none;
  14. }
  15. #quick_reply_editor {
  16. float: none;
  17. text-align: center;
  18. margin: 0 auto !important;
  19. }
  20. #quick_reply_padding {
  21. padding-right: 0px !important;
  22. }
  23. </style>
 


I took that part out, and it now looks good. {Smile}

Thanks.