Link to home
Start Free TrialLog in
Avatar of Andy_Fang
Andy_Fang

asked on

CKeditor - Autogrow Interupting the Footer?

Hello,

On the website here, you can see that the ckeditor loads fine. However, once you add a few paragraphs to the editor like so:  http://gyazo.com/42e2839cf58306dfa50d2a37042bc444

How do I make it so that the editor will grow, but will not go under the footer or over?

Thank you.
Avatar of Gary
Gary
Flag of Ireland image

A link to the page..., your previous link doesn't show the editor anymore.
It's probably not contained properly by your container, as in the previous question check your html markup in a validator.
Avatar of Andy_Fang
Andy_Fang

ASKER

Oops, my bad. I could've sworn the link was there. Here it is.

I don't use the W3 validator because it has a lot of false errors such as self enclosing tags. I'm not sure what you mean by not contained properly.
But you do have lots of errors
<!DOCTYPE should be the very first line.
You have a half started script tag
<script src="/js/javascript.js"
Closing tags that have no open tag
<center> is deprecated - you shouldn't be using it

You are designing for mobile so you should really be using the HTML5 doctype
<!DOCTYPE html>
Self closing tags are the default - you don't need to close them i.e.
<br> is the way to write it, not <br />
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial