Hi everyone, I noticed on ckeditor that once you submitted your file, there will be a gap inbetween your 1st line/picture etc and your browser. I understand that this is normal but I was wondering if its possible to remove that gap as it looks very ugly if I were to put pictures down there.
I found that I could remove the gap by using <body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>, so I tried to pre code the data in before using ckeditor to open it but apparently when i clicked on submit, my previous coding will all be gone and the coding thats left are those that are in the ckeditor. I have been stuck for days and I really hope someone out there could help me.
Thanks
Jessica
I found that I could remove the gap by using <body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>, so I tried to pre code the data in before using ckeditor to open it but apparently when i clicked on submit, my previous coding will all be gone and the coding thats left are those that are in the ckeditor. I have been stuck for days and I really hope someone out there could help me.
Thanks
Jessica

Re: Removing the top gap
Re: Removing the top gap
Regards
Attachments:
Re: Removing the top gap
My hunch would be that perhaps you need to use body CSS styles instead of attributes. I.E.
<body style="margin=0; padding=0;">
But it doesn't make sense to me in the first place that it wouldn't take up the full screen...
Re: Removing the top gap
Re: Removing the top gap
Re: Removing the top gap