Topic: FullPage Plugin : Default head content
I am using FullPage edit plugin . It adds head and html tags automatically as below which is fine . But I want to add some custom content to it.
Right now It just inserts following html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
</html>
While I need folllowing by default.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
body {background-color:#fff; font-family:Arial, Helvetica, sans-serif; font-size: small; margin:0; padding:5px 15px}
</style>
</head>
Is there any setting in tinymce or I can change any js files to get expected result ?
Last edited by sonesh (2011-06-07 00:21:05)