What Does This Meta Tag Look Like? This meta tag is usually placed beneath the title and meta description tags in the <HEAD></HEAD> section of your pages’ HTML code, like this:<HEAD> <TITLE>your DESCRIPTIVE KEYWORDS title goes here</TITLE> <META NAME=”DESCRIPTION” CONTENT=”Your keyword rich marketing sales-pitch meta description goes here”> <META NAME=”KEYWORDS” CONTENT=”your keywords,go here,separated by a …
Category Archives: HTML – XHTML
favicon meta tag
<link rel=”shortcut icon” type=”image/x-icon” href=”/favicon.ico” /> <link rel=”icon” type=”image/x-icon” href=”/favicon.ico” />
Execute Lightbox Scripts From Flash
Execute Lightbox Scripts From Flash: Part Deux Since the first thread showing you how to execute Lightbox scripts from Flash was such a big hit, I decided to write another showing you how to gain even more functionality in this regard. Tonight I will be showing you how to initiate a Lightbox containing a Flash …
TinyMCE: Configuration/valid elements
Option: valid_elements The valid_elements option defines which elements will remain in the edited text when the editor saves. You can use this to limit the returned HTML to a subset. This option contains a comma separated list of element conversion chunks. Each chunk contains information about how one element and its attributes should be treated. The …
Absolute CSS Boxes
Quite some time ago, I had an argument with a friend who is a big fan of Microsoft products. While I’m no Xbox hater, I am not very fond of some of their more shoddy products such as Internet Explorer. He was justifying the shortcomings of IE6, saying that absolute positioning is rarely used in …
Tinymce pagebreak button
<script language=”javascript” type=”text/javascript” src=”Scripts/tiny_mce/tiny_mce.js”></script> <script language=”javascript” type=”text/javascript”> // Notice: The simple theme does not use all options some of them are limited to the advanced theme tinyMCE.init({ mode : “textareas”, height : “380”, width : “380”, theme : “advanced”, valid_elements : “img[src|border|alt=|title|width|height|align|class],a[href|target=_blank],b/strong,div[align],br,ol,li,ul,p,blockquote”, entity_encoding : “utf-8″, plugins :”pagebreak”, theme_advanced_buttons3 : “pagebreak”, pagebreak_separator : “<!– my …