1

Topic: Noob with Height/Width being ignored and wordcount always = 0

Hi All!

I'm trying to do a new implementation and I'm hitting two problems:

I've set rows="25" cols="80" in the html and that initially sets the textarea to the correct size but as soon as tinymce gets rendered that setting is overridden.  So, I set the height/width in the init code and that gets ignored so I must be doing something wrong here!

Also, the wordcount never changes...

Oh... and the selects appear in the upper right corner of the page and not within the textarea..

The page can be found at: http://www.neighborhoodwatchalerts.com/info/

<textarea class="tinymce" id="elm1" name="elm1" rows="25" cols="80"></textarea>

tinyMCE.init({
    // General options
    mode : "textareas",
    theme : "advanced",

  width : "400",
  height: "200",    
    
    plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave,visualblocks",

    // Theme options
    theme_advanced_buttons1 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,bullist,numlist,|,outdent,indent",
    theme_advanced_buttons2 : "formatselect,fontsizeselect,|,forecolor,backcolor,|,link,unlink,anchor,image,|,preview,|,undo,redo",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true,

    // Example content CSS (should be your site CSS)
    content_css : "css/content.css",

    // Drop lists for link/image/media/template dialogs
    template_external_list_url : "lists/template_list.js",
    external_link_list_url : "lists/link_list.js",
    external_image_list_url : "lists/image_list.js",
    media_external_list_url : "lists/media_list.js",

    // Replace values for the template plugin
    template_replace_values : {
        username : "Some User",
        staffid : "991234"
    }
});